.gpge-order-shell {
  --gpge-brand: #009de0;
  --gpge-brand-dark: #0073b8;
  --gpge-accent: #14b86a;
  --gpge-bg: #f4f7fb;
  --gpge-card: #ffffff;
  --gpge-text: #15243a;
  --gpge-muted: #5b6677;
  --gpge-border: #d6deea;
  --gpge-shadow: 0 16px 44px rgba(20, 36, 58, 0.09);
  color: var(--gpge-text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.gpge-order-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f6ff 0%, #f7fbff 48%, #ecfff5 100%);
  border: 1px solid #d8e8f8;
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--gpge-shadow);
}

.gpge-order-hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle at center, rgba(0, 157, 224, 0.3) 0%, rgba(0, 157, 224, 0) 65%);
  pointer-events: none;
}

.gpge-order-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--gpge-brand-dark);
  border: 1px solid #bdd8f0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.gpge-order-hero__title {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  color: #0f2a42;
}

.gpge-order-hero__subtitle {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--gpge-muted);
  font-size: 15px;
  line-height: 1.5;
}

.gpge-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 18px;
}

.gpge-order-main,
.gpge-order-side {
  min-width: 0;
}

.gpge-order-side-sticky {
  position: sticky;
  top: 92px;
}

.gpge-section-head {
  margin-bottom: 12px;
}

.gpge-section-head h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.2;
}

.gpge-box {
  background: var(--gpge-card);
  border: 1px solid var(--gpge-border);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(20, 36, 58, 0.05);
}

.gpge-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.gpge-box h3,
.gpge-box h4 {
  margin: 0;
}

.gpge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #ecf7ff;
  color: var(--gpge-brand-dark);
  border: 1px solid #b9dff6;
  font-weight: 800;
}

.gpge-muted {
  color: var(--gpge-muted);
  font-size: 14px;
}

.gpge-cart-items {
  display: grid;
  gap: 10px;
}

.gpge-cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid #d9e3ef;
  border-radius: 15px;
  padding: 10px;
  background: #ffffff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gpge-cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 35, 56, 0.08);
}

.gpge-cart-thumb {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  overflow: hidden;
  background: #eaf0f6;
}

.gpge-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gpge-cart-thumb-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8a96a8;
  font-weight: 700;
}

.gpge-cart-content h4 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
}

.gpge-cart-content h4 a {
  color: #102943;
  text-decoration: none;
}

.gpge-cart-content h4 a:hover {
  color: var(--gpge-brand-dark);
}

.gpge-cart-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.gpge-cart-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f3f8fe;
  border: 1px solid #deebf8;
  color: #3e566f;
  font-size: 12px;
  padding: 4px 8px;
}

.gpge-qty-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gpge-qty-wrap--single {
  justify-content: space-between;
}

.gpge-qty-static {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid #d7e6f3;
  background: #f4f9fe;
  color: #24425d;
  font-size: 12px;
  font-weight: 700;
  padding: 0 10px;
}

.gpge-qty-btn,
.gpge-remove-btn {
  border: 1px solid #c8d6e8;
  background: #fff;
  color: #15304a;
  border-radius: 10px;
  padding: 5px 11px;
  cursor: pointer;
  min-height: 34px;
}

.gpge-qty-btn {
  font-size: 15px;
  font-weight: 700;
}

.gpge-qty-btn:hover {
  border-color: var(--gpge-brand-dark);
  color: var(--gpge-brand-dark);
}

.gpge-remove-btn {
  border-color: #f1c1c1;
  color: #9f2727;
}

.gpge-remove-btn:hover {
  background: #fff5f5;
}

.gpge-qty-input {
  width: 52px;
  text-align: center;
  border: 1px solid #c8d6e8;
  border-radius: 10px;
  height: 34px;
  background: #f8fbff;
}

.gpge-summary-box {
  background: linear-gradient(150deg, #0f2d4c 0%, #17456c 55%, #0f744f 100%);
  border-color: #153e64;
  color: #fff;
}

.gpge-summary-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.gpge-summary-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.gpge-summary-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 8px;
  font-size: 14px;
}

.gpge-summary-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.gpge-summary-list strong {
  font-size: 16px;
}

.gpge-btn {
  border: 0;
  border-radius: 12px;
  background: var(--gpge-brand-dark, #0a639d);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.gpge-btn:hover,
.gpge-btn:focus {
  color: #fff;
  background: #095689;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(11, 50, 78, 0.23);
}

.gpge-btn--ghost {
  background: #fff;
  color: #114266;
  border: 1px solid #c4d9ee;
}

.gpge-btn--ghost:hover,
.gpge-btn--ghost:focus {
  color: #0f2e49;
  background: #f4f9ff;
}

.gpge-btn--full {
  width: 100%;
  background: #14b86a;
  color: #fff;
}

.gpge-btn--full:hover,
.gpge-btn--full:focus {
  background: #0f9f5a;
}

.gpge-btn--dock {
  background: #14b86a;
  min-width: 180px;
}

.gpge-btn.is-disabled,
.gpge-btn[aria-disabled=\"true\"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.gpge-mode-box {
  background: #ffffff;
}

.gpge-mode-box form label {
  display: block;
  margin-bottom: 8px;
  color: #21364d;
}

.gpge-ok {
  color: #0f7a45;
  font-weight: 700;
}

.gpge-auth-box {
  background: linear-gradient(140deg, #e9f6ff 0%, #f7fdff 100%);
}

.gpge-auth-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0 6px;
}

.gpge-auth-actions .gpge-btn {
  min-width: 118px;
}

.gpge-auth-side-box h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.gpge-inquiry-form {
  display: grid;
  gap: 8px;
}

.gpge-inquiry-form label {
  font-weight: 700;
  color: #17364f;
  font-size: 14px;
}

.gpge-inquiry-form input,
.gpge-inquiry-form select,
.gpge-inquiry-form textarea {
  border: 1px solid #c8d8ea;
  border-radius: 11px;
  padding: 10px 11px;
  font-size: 14px;
  width: 100%;
  color: #15243a;
  background: #fff;
}

.gpge-inquiry-form textarea {
  min-height: 110px;
}

.gpge-channels {
  display: grid;
  gap: 7px;
  margin-top: 4px;
}

.gpge-channels label {
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
}

.gpge-empty {
  border: 1px dashed #bbcadb;
  border-radius: 12px;
  padding: 16px;
  color: #576478;
  text-align: center;
  background: #f8fbff;
}

.gpge-form-status {
  border-radius: 11px;
  padding: 10px 11px;
  font-size: 14px;
}

.gpge-form-status.is-success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.gpge-form-status.is-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.gpge-template-field {
  display: grid;
  gap: 6px;
}

.gpge-template-field.is-hidden {
  display: none !important;
}

body.gpge-modal-open {
  overflow: hidden;
}

.gpge-reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 100040;
  display: none;
}

.gpge-reservation-modal.is-open {
  display: block;
}

.gpge-reservation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, 0.54);
  backdrop-filter: blur(2px);
}

.gpge-reservation-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  border: 1px solid #d7e3ef;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.26);
  padding: 18px;
}

.gpge-reservation-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #cfdae7;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  background: #ffffff;
  color: #1f3348;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gpge-reservation-modal__dialog h3 {
  margin: 0 32px 6px 0;
  font-size: 24px;
  color: #0f2942;
}

.gpge-reservation-modal__subtitle {
  margin: 0 0 14px;
  color: #576578;
  font-size: 14px;
}

.gpge-reservation-form {
  display: grid;
  gap: 9px;
}

.gpge-reservation-form .gpge-template-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.gpge-reservation-form textarea[name="message"] {
  min-height: 90px;
}

.gpge-single-add-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  flex-wrap: wrap;
}

.gpge-add-btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffcf33 0%, #f5b600 100%);
  color: #1b222c;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 20px rgba(245, 182, 0, 0.22);
}

.gpge-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(245, 182, 0, 0.27);
}

.gpge-add-btn--single {
  min-width: 240px;
}

.gpge-single-inline-add {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 8px;
}

.gpge-quick-btn {
  border: 1px solid #c8d9ea;
  border-radius: 999px;
  background: #ffffff;
  color: #17364f;
  min-height: 42px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
}

.gpge-quick-btn:hover,
.gpge-quick-btn:focus {
  border-color: #9ec4e2;
  color: #0f2e49;
  box-shadow: 0 10px 18px rgba(17, 35, 56, 0.08);
}

.gpge-quick-btn--pdf {
  border-color: #dfc78d;
  background: #fff9e8;
  color: #8a5a05;
}

.gpge-quick-btn--pdf:hover,
.gpge-quick-btn--pdf:focus {
  border-color: #d1ab57;
  color: #714901;
}

.gpge-quick-btn--reserve {
  border-color: #92d5b4;
  background: #ecfff4;
  color: #0f7a45;
}

.gpge-quick-btn--reserve:hover,
.gpge-quick-btn--reserve:focus {
  border-color: #67bc90;
  color: #0d6b3c;
}

.gpge-quick-btn--notify {
  border-color: #b6b8ff;
  background: #f4f3ff;
  color: #4a3fa0;
}

.gpge-quick-btn--notify:hover,
.gpge-quick-btn--notify:focus {
  border-color: #8f92ef;
  color: #372c86;
}

.gpge-quick-btn--notify.is-active {
  border-color: #7a5cff;
  background: linear-gradient(135deg, #5d50d8, #8b6cff);
  color: #fff;
  box-shadow: 0 14px 28px rgba(101, 85, 214, 0.24);
}

.gpge-quick-btn--notify.is-locked {
  position: relative;
}

.gpge-quick-btn--notify.is-locked::after {
  content: "Prijava";
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(74, 63, 160, 0.12);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gpge-quick-btn--notify.is-disabled,
.gpge-quick-btn--notify[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
}

.gpge-open-cart {
  display: inline-flex;
  align-items: center;
  border: 1px solid #bcd6ee;
  border-radius: 999px;
  color: #144162;
  background: #fff;
  text-decoration: none;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 700;
}

.gpge-open-cart:hover {
  text-decoration: none;
  color: #0f2e49;
}

.gpge-has-floating-menu .gp-fm-panel {
  gap: 14px;
}

.gpge-has-floating-menu .gp-fm-nav {
  flex: 1 1 auto;
  min-height: 0;
  padding-bottom: 2px;
}

.gpge-fm-tab-count {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #14b86a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(20, 184, 106, 0.28);
}

.gpge-fm-cart {
  margin-top: auto;
  border: 1px solid #cfe4f5;
  border-radius: 22px;
  padding: 12px;
  background: linear-gradient(160deg, #f6fbff 0%, #eef9ff 56%, #f2fff7 100%);
  box-shadow: 0 14px 28px rgba(17, 35, 56, 0.08);
}

.gpge-fm-cart__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.gpge-fm-cart__intro {
  min-width: 0;
}

.gpge-fm-cart__aside {
  display: grid;
  justify-items: end;
  gap: 8px;
  flex: 0 0 auto;
}

.gpge-fm-cart__eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #cde2f5;
  background: #ffffff;
  color: #156aa3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 7px;
  margin-bottom: 6px;
}

.gpge-fm-cart__title {
  margin: 0;
  color: #13273c;
  font-size: 17px;
  line-height: 1.15;
}

.gpge-fm-cart__subtitle {
  margin: 4px 0 0;
  color: #5b6677;
  font-size: 11px;
  line-height: 1.45;
}

.gpge-fm-cart__count {
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #1098d8;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(16, 152, 216, 0.24);
}

.gpge-fm-cart__items {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 2px;
}

.gpge-fm-cart__open-hint {
  display: block;
  margin: -2px 2px 10px;
  color: #145a8a;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.gpge-fm-cart__open-hint:hover,
.gpge-fm-cart__open-hint:focus {
  color: #0f4870;
  text-decoration: underline;
}

.gpge-fm-cart__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px;
  align-items: flex-start;
  padding: 7px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d5e5f3;
  color: #13273c;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.gpge-fm-cart__item:hover {
  transform: translateY(-1px);
  border-color: #b8d7ec;
  box-shadow: 0 12px 22px rgba(16, 37, 58, 0.08);
  color: #13273c;
}

.gpge-fm-cart__thumb {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  background: #e5eff8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gpge-fm-cart__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gpge-fm-cart__thumb-fallback {
  color: #7b8ca0;
  font-size: 14px;
  font-weight: 800;
}

.gpge-fm-cart__body {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.gpge-fm-cart__item-link {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #13273c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.gpge-fm-cart__item-link:hover,
.gpge-fm-cart__item-link:focus {
  color: #13273c;
  text-decoration: none;
}

.gpge-fm-cart__meta {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #5d6a7d;
  font-size: 11px;
}

.gpge-fm-cart__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gpge-fm-cart__qty {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #14b86a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.gpge-fm-cart__remove,
.gpge-fm-cart__clear {
  border: 1px solid #d3dfeb;
  border-radius: 999px;
  background: #ffffff;
  color: #17364f;
  min-height: 28px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.gpge-fm-cart__remove:hover,
.gpge-fm-cart__remove:focus,
.gpge-fm-cart__clear:hover,
.gpge-fm-cart__clear:focus {
  border-color: #a8c9e4;
  color: #0f2b45;
}

.gpge-fm-cart__empty {
  display: grid;
  gap: 4px;
  border: 1px dashed #bfd7eb;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px;
  color: #516173;
  text-align: left;
}

.gpge-fm-cart__empty strong {
  color: #17364f;
  font-size: 14px;
}

.gpge-fm-cart__empty span {
  font-size: 12px;
  line-height: 1.45;
}

.gpge-fm-cart__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, #14b86a 0%, #1098d8 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(16, 152, 216, 0.2);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.gpge-fm-cart__cta:hover,
.gpge-fm-cart__cta:focus {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(16, 152, 216, 0.26);
}

.gpge-floating-cart {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #14283d;
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.gpge-floating-cart:hover,
.gpge-floating-cart:focus {
  color: #fff;
  text-decoration: none;
}

.gpge-floating-cart__icon {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gpge-floating-cart__count {
  min-width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #14b86a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}

.gpge-floating-cart:not(.has-items) .gpge-floating-cart__count {
  background: #5a6a7e;
}

.gpge-has-floating-menu .gpge-floating-cart {
  display: none;
}

.adt-category-ad-card.gpge-card-layout--strip {
  padding: 10px;
  border-radius: 8px;
  border-color: #e3e3e3;
  box-shadow: 0 8px 24px rgba(18, 28, 45, 0.04);
  overflow: hidden;
}

.adt-category-ad-card.gpge-card-layout--strip:hover {
  box-shadow: 0 18px 38px rgba(18, 28, 45, 0.1);
}

.adt-category-ad-card.gpge-card-layout--strip .category-img-box {
  height: clamp(210px, 28vw, 320px);
}

.adt-category-ad-card.gpge-card-layout--strip .category-img-box img {
  border-radius: 0;
}

.adt-category-ad-card.gpge-card-layout--strip .category-content-box {
  padding: 18px 16px 12px;
}

.adt-category-ad-card.gpge-card-layout--strip .category-content-box .ctg-tag {
  font-size: 14px;
  font-weight: 400;
  color: #7a7a7a;
}

.adt-category-ad-card.gpge-card-layout--strip .category-content-box h5 {
  margin: 14px 0 12px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: #222222;
}

.adt-category-ad-card.gpge-card-layout--strip .category-content-box p {
  font-size: 14px;
  color: #757575;
  margin-top: 8px;
}

.adt-category-ad-card.gpge-card-layout--strip .category-content-box p i {
  font-size: 16px;
  margin-right: 12px;
}

.adt-category-ad-card.gpge-card-layout--strip .category-content-box .ad_grid_date_posted {
  font-size: 14px;
  color: #777777;
}

.adt-category-ad-card.gpge-card-layout--strip .category-content-box .price-box {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
}

.adt-category-ad-card.gpge-card-layout--strip .category-content-box .price-box strong {
  font-size: 18px;
  font-weight: 600;
  color: #57af59;
}

.adt-category-ad-card.gpge-card-layout--strip .category-content-box .price-box .favourite {
  display: none !important;
}

.gpge-card-add-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -22px 12px 0;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #ececec;
  box-shadow: 0 12px 18px rgba(18, 28, 45, 0.08);
}

.gpge-card-add-strip__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #141414;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.gpge-card-add-strip__button:hover {
  color: #141414;
}

.gpge-card-add-strip__button:focus {
  outline: 2px solid rgba(243, 143, 0, 0.28);
  outline-offset: 2px;
}

.gpge-card-add-strip__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ef8f00;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  flex: 0 0 auto;
}

.gpge-card-add-strip__label {
  display: inline-block;
  line-height: 1;
}

.gpge-card-add-strip__status {
  position: relative;
  min-width: 22px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3dbb4f;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  flex: 0 0 auto;
}

.gpge-card-add-strip__status[data-gpge-cart-qty]::after {
  content: attr(data-gpge-cart-qty);
  position: absolute;
  top: -5px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #14283d;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  padding: 0 4px;
}

.gpge-card-add-strip.is-added {
  border-color: #d7ecd8;
  background: linear-gradient(180deg, #ffffff 0%, #f8fff9 100%);
  justify-content: flex-end;
}

.gpge-card-add-strip.is-added .gpge-card-add-strip__button {
  display: none !important;
}

.gpge-card-add-strip.is-added .gpge-card-add-strip__icon {
  background: #58b947;
}

.gp-card-profile-host {
  position: relative;
}

.gp-card-profile-badge,
.adt-property-ad-card .adt-property-img-box .author-box.gp-card-profile-badge--native {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 28px);
  min-height: 46px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: rgba(8, 15, 27, 0.78);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gp-card-profile-badge:hover,
.adt-property-ad-card .adt-property-img-box .author-box.gp-card-profile-badge--native:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.gp-card-profile-badge__avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.gp-card-profile-badge__image,
.adt-property-ad-card .adt-property-img-box .author-box.gp-card-profile-badge--native img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.gp-card-profile-badge__name,
.adt-property-ad-card .adt-property-img-box .author-box.gp-card-profile-badge--native .gp-card-profile-badge__name,
.adt-property-ad-card .adt-property-img-box .author-box.gp-card-profile-badge--native span {
  display: block;
  min-width: 0;
  max-width: 180px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.adt-property-ad-card .adt-property-img-box .author-box.gp-card-profile-badge--native a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.adt-property-ad-card .adt-property-img-box .author-box.gp-card-profile-badge--native > a:last-child {
  overflow: hidden;
}

.adt-property-ad-card .adt-property-img-box .author-box.gp-card-profile-badge--native > a:first-child {
  flex: 0 0 auto;
}

.adt-category-ad-card.gpge-card-layout--strip .gp-card-profile-badge {
  bottom: 34px;
}

body .gpcm-recipe-list-wrap .gpcm-recipe-card__media .gp-card-profile-badge {
  left: 16px;
  bottom: 16px;
}

@media (max-width: 767px) {
  .gp-card-profile-badge,
  .adt-property-ad-card .adt-property-img-box .author-box.gp-card-profile-badge--native {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    min-height: 42px;
    padding: 5px 12px 5px 5px;
    gap: 8px;
  }

  .gp-card-profile-badge__avatar {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .gp-card-profile-badge__name,
  .adt-property-ad-card .adt-property-img-box .author-box.gp-card-profile-badge--native span {
    max-width: 132px;
    font-size: 13px;
  }

  .adt-category-ad-card.gpge-card-layout--strip .gp-card-profile-badge {
    bottom: 28px;
  }
}

.gpge-card-add-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  border-radius: 0 12px 0 22px;
  background: rgba(223, 241, 255, 0.94);
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 6px;
  z-index: 8;
  pointer-events: none;
  transition: background 0.16s ease, box-shadow 0.16s ease;
}

.gpge-card-add-corner.is-added {
  background: rgba(219, 248, 231, 0.96);
  box-shadow: inset 0 0 0 1px rgba(20, 184, 106, 0.18);
}

.gpge-card-add-btn {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #0d95d8;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  pointer-events: auto;
  transition: transform 0.14s ease, color 0.14s ease, background 0.14s ease, box-shadow 0.14s ease;
  position: relative;
}

.gpge-card-add-btn:hover {
  color: #097cbc;
  transform: scale(1.06);
}

.gpge-card-add-btn:focus {
  outline: 2px solid rgba(13, 149, 216, 0.45);
  outline-offset: 2px;
}

.gpge-card-add-btn.is-added {
  background: #ffffff;
  color: #0f8b53;
  box-shadow: 0 8px 18px rgba(15, 139, 83, 0.18);
  font-size: 15px;
  font-weight: 800;
}

.gpge-card-add-btn.is-added:hover {
  color: #0d7648;
}

.gpge-card-add-btn[data-gpge-cart-qty]::after {
  content: attr(data-gpge-cart-qty);
  position: absolute;
  top: -6px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #14283d;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  padding: 0 4px;
  line-height: 1;
}

.gpge-add-btn.is-added {
  background: linear-gradient(135deg, #14b86a 0%, #1098d8 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(16, 152, 216, 0.22);
}

.gpge-add-btn.is-added:hover {
  color: #ffffff;
}

.gpge-toast {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100001;
  max-width: 360px;
  width: calc(100% - 32px);
  border-radius: 14px;
  padding: 12px;
  color: #fff;
  background: #12263c;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  transform: translateX(112%);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.gpge-toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.gpge-toast--success {
  background: linear-gradient(135deg, #0f8b53 0%, #1373bb 100%);
}

.gpge-toast--error {
  background: linear-gradient(135deg, #ba2020 0%, #7f1d1d 100%);
}

.gpge-toast__thumb {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gpge-toast__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gpge-toast__thumb-fallback {
  color: rgba(255, 255, 255, 0.88);
  font-size: 28px;
  font-weight: 700;
}

.gpge-toast__content {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.gpge-toast__content--single {
  grid-column: 1 / -1;
}

.gpge-toast__title {
  display: block;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.gpge-toast__text {
  display: block;
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gpge-mobile-dock {
  display: none;
}

.gpge-trusted-card {
  border: 1px solid #d6e2ef;
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 14px 30px rgba(16, 37, 58, 0.08);
  padding: 16px;
  color: #12263c;
}

.gpge-trusted-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.gpge-trusted-card__title {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
}

.gpge-trusted-card__subtitle {
  margin: 5px 0 0;
  color: #5b6677;
  font-size: 13px;
}

.gpge-trusted-card__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.gpge-trusted-card__badge.is-verified {
  background: #0f7a4b;
  color: #fff;
}

.gpge-trusted-card__badge.is-pending {
  background: #e9eef5;
  color: #445468;
}

.gpge-trusted-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin-bottom: 14px;
}

.gpge-trusted-card__grid p {
  margin: 0;
  padding: 8px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #dee8f3;
  font-size: 13px;
  line-height: 1.35;
}

.gpge-trusted-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gpge-is-order-page .gpge-floating-cart {
  display: none;
}

@media (max-width: 1080px) {
  .gpge-order-layout {
    grid-template-columns: 1fr;
  }

  .gpge-order-side-sticky {
    position: static;
  }
}

@media (max-width: 860px) {
  .gpge-order-hero {
    border-radius: 16px;
    padding: 16px;
  }

  .gpge-box {
    border-radius: 14px;
  }

  .gpge-cart-item {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .gpge-cart-thumb {
    width: 78px;
    height: 78px;
  }

  .gpge-trusted-card__grid {
    grid-template-columns: 1fr;
  }

  .gpge-fm-cart {
    border-radius: 18px;
    padding: 12px;
  }

  .gpge-fm-cart__item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .gpge-fm-cart__thumb {
    width: 42px;
    height: 42px;
  }

  .gpge-fm-cart__aside {
    justify-items: start;
  }

  .adt-category-ad-card.gpge-card-layout--strip .category-content-box {
    padding: 16px 12px 10px;
  }

  .adt-category-ad-card.gpge-card-layout--strip .category-content-box h5 {
    font-size: 20px;
  }

  .gpge-single-inline-add {
    margin-top: 8px;
  }

  .gpge-add-btn--single,
  .gpge-quick-btn {
    width: 100%;
    justify-content: center;
  }

  .gpge-reservation-modal__dialog {
    width: calc(100% - 18px);
    margin: 9px auto;
    max-height: calc(100vh - 18px);
    border-radius: 14px;
    padding: 14px;
  }

  .gpge-reservation-form .gpge-template-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gpge-auth-actions .gpge-btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .gpge-cart-item {
    grid-template-columns: 1fr;
  }

  .gpge-cart-thumb {
    width: 100%;
    height: 180px;
  }

  .gpge-mobile-dock {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 14px;
    background: #12273d;
    color: #fff;
    padding: 10px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
  }

  .gpge-mobile-dock__meta {
    display: grid;
    gap: 2px;
    font-size: 12px;
  }

  .gpge-mobile-dock .gpge-btn {
    padding: 9px 12px;
    border-radius: 10px;
    min-width: 132px;
  }

  .gpge-floating-cart {
    left: 10px;
    right: 10px;
    justify-content: space-between;
  }

  .gpge-toast {
    top: auto;
    right: 10px;
    bottom: 16px;
    width: calc(100% - 20px);
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .gpge-toast__thumb {
    width: 56px;
    height: 56px;
  }

  .gpge-card-add-strip {
    margin: -16px 10px 0;
    padding: 9px 10px;
  }

  .gpge-card-add-strip__button {
    gap: 7px;
    font-size: 11px;
  }

  .gpge-card-add-strip__icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }

  .gpge-trusted-card__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gpge-trusted-card__actions .gpge-btn {
    width: 100%;
  }
}
