/* GulPhool — clean FlowerAura-style clone */

:root {
  --teal: #0e4d65;
  --green: #49a066;
  --text: #1c2120;
  --muted: #888888;
  --border: rgba(134, 134, 134, 0.5);
  --search-bg: #edf0f4;
  --card-bg: #e7edef;
  --badge: #ea3761;
  --star: #4caf50;
  --wrap: min(1280px, 90vw);
  --r: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.fa-wrap { width: var(--wrap); margin: 0 auto; }

/* ── ANNOUNCEMENT BAR ── */
.gp-announcement {
  background: var(--teal, #0d9488);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
}
.gp-announcement a {
  color: inherit;
  text-decoration: none;
}
.gp-announcement a:hover { text-decoration: underline; }

/* ── HEADER ── */
.fa-header {
  position: relative;
  z-index: 1100;
  background: #fff;
}

.fa-header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  transition: opacity 0.2s ease;
}

.fa-logo {
  grid-column: 1;
  justify-self: start;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.fa-logo span { color: var(--green); }
.fa-logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
  font: inherit;
}
.fa-logo-img {
  display: block;
  object-fit: contain;
}
.fa-logo-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.fa-logo-text {
  color: var(--teal);
  font-size: inherit;
  font-weight: inherit;
}
.fa-logo-sm { font-size: 22px; display: block; margin-bottom: 8px; }

.fa-header-mid {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.fa-city-btn {
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(90deg, #e8f4fc 0%, #f5fbff 100%);
  padding: 0 14px;
  font: 500 13px Poppins, sans-serif;
  color: #0e4d65;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: none;
}
.fa-city-pin {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2349a066'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.fa-city-text { flex-shrink: 0; }
.fa-city-label { font-weight: 600; }
.fa-city-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%230e4d65' d='M2 4l4 4 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}
.fa-city-btn:hover { border-color: #49a066; }
.fa-city-current-icon { display: none; }
.fa-city-current-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fa-search-wrap {
  position: relative;
  width: 300px;
  max-width: 32vw;
  min-width: 150px;
  flex-shrink: 1;
}
.fa-search {
  position: relative;
  width: 100%;
}
.fa-search input {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: var(--search-bg);
  padding: 0 50px 0 16px;
  font: 400 14px Poppins, sans-serif;
  color: var(--text);
  outline: none;
}
.fa-search input::placeholder { color: var(--muted); }
.fa-search button {
  position: absolute;
  right: 4px;
  top: 3px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 6px;
  background: transparent url('https://imgcdn.floweraura.com/ssr-build/static/media/search-fa.d3088b11.svg') center/20px no-repeat;
  cursor: pointer;
}
.fa-search-hint {
  position: absolute;
  left: 16px;
  top: 0;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 3px;
  font: 400 14px Poppins, sans-serif;
  color: var(--muted);
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
}
.fa-search-hint-word {
  font-weight: 400;
  color: var(--muted);
}
.fa-search-caret {
  display: inline-block;
  width: 1px;
  height: 1.05em;
  margin-left: 1px;
  background: var(--muted);
  animation: faSearchCaret 0.9s steps(1) infinite;
}
@keyframes faSearchCaret {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.fa-search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 2400;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
  padding: 6px;
  max-height: 70vh;
  overflow-y: auto;
}
.fa-search-suggest-msg {
  margin: 0;
  padding: 14px 12px;
  font-size: 13px;
  color: var(--muted);
}
.fa-search-suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  background: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}
.fa-search-suggest-item:hover,
.fa-search-suggest-item.active {
  background: var(--search-bg, #f5f5f5);
}
.fa-search-suggest-item img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.fa-search-suggest-name {
  flex: 1;
  min-width: 0;
  font: 400 13.5px Poppins, sans-serif;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fa-search-suggest-price {
  font: 600 13px Poppins, sans-serif;
  color: var(--text);
  flex-shrink: 0;
}
.fa-search-suggest-all {
  display: block;
  width: 100%;
  border: none;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  background: none;
  padding: 11px 10px;
  font: 500 13px Poppins, sans-serif;
  color: var(--green, #1a8d5f);
  cursor: pointer;
  text-align: center;
}
.fa-search-suggest-all:hover { text-decoration: underline; }

.fa-search-modal-suggest {
  margin-top: 10px;
  max-height: 60vh;
  overflow-y: auto;
}

/* City picker popup */
.fa-city-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 16px 24px;
  background: rgba(15, 23, 42, .45);
  backdrop-filter: blur(2px);
}
.fa-city-overlay:not(.open) { display: none; }
body.fa-city-open { overflow: hidden; }

.fa-city-modal {
  width: 100%;
  max-width: 540px;
  max-height: min(80vh, 560px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(13, 77, 101, .28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: faCityPop .26s cubic-bezier(.16, 1, .3, 1);
}
@keyframes faCityPop {
  from { opacity: 0; transform: translateY(-14px) scale(.97); }
  to { opacity: 1; transform: none; }
}

.fa-city-modal-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 22px 16px;
  background: #fff;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.fa-city-modal-head-text { display: flex; flex-direction: column; gap: 4px; }
.fa-city-modal-head h2 {
  margin: 0;
  font: 600 19px Poppins, sans-serif;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fa-city-modal-head h2::before {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e4d65'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.fa-city-modal-sub {
  margin: 0;
  font: 400 12.5px Poppins, sans-serif;
  color: var(--muted);
}
.fa-city-close {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  font-size: 22px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s;
}
.fa-city-close:hover { background: #e5e7eb; color: var(--text); }

.fa-city-search {
  padding: 12px 20px 0;
}
.fa-city-search input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px 0 40px;
  font: 400 14px Poppins, sans-serif;
  outline: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239ca3af'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") 12px center/18px no-repeat;
}
.fa-city-search input:focus { border-color: #49a066; box-shadow: 0 0 0 3px rgba(73, 160, 102, .12); }

.fa-city-modal-body {
  padding: 14px 20px 20px;
  overflow-y: auto;
}
.fa-city-sub {
  margin: 0 0 12px;
  font: 500 13px Poppins, sans-serif;
  color: var(--muted);
}

.fa-city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.fa-city-item {
  position: relative;
  width: 100%;
  border: 1px solid #e6edf0;
  border-radius: 12px;
  background: #fff;
  padding: 11px 6px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font: inherit;
  color: var(--text);
  transition: transform .16s ease, border-color .16s, background .16s, box-shadow .16s;
}
.fa-city-item:hover {
  border-color: #49a066;
  background: #f6fbf8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 77, 101, .12);
}
.fa-city-item.active {
  border-color: #49a066;
  background: linear-gradient(180deg, #eefaf2 0%, #fff 100%);
  box-shadow: 0 0 0 2px #49a066;
}
.fa-city-item-pin {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  background: transparent;
}
.fa-city-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fa-city-item-name {
  font: 500 11.5px Poppins, sans-serif;
  line-height: 1.2;
  text-align: center;
}
.fa-city-item-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #49a066 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
}

.fa-header-icons {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.fa-header-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text);
  padding: 0 12px;
  gap: 5px;
}
.fa-header-icons a img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}
.fa-header-icons a:hover { color: var(--teal); }

/* Mobile search icon (hidden on desktop — inline search box is used there) */
.fa-search-icon-btn {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
}
.fa-search-icon-btn img { width: 24px; height: 24px; display: block; object-fit: contain; }

/* Search popup (mobile) */
.fa-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 16px 24px;
  background: rgba(15, 23, 42, .45);
  backdrop-filter: blur(2px);
}
.fa-search-overlay:not(.open) { display: none; }
.fa-search-modal {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  padding: 14px;
  animation: faCityPop .2s ease;
}
.fa-search-modal-form {
  position: relative;
  display: flex;
  align-items: center;
}
.fa-search-modal-form input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--search-bg);
  padding: 0 96px 0 16px;
  font: 400 15px Poppins, sans-serif;
  color: var(--text);
  outline: none;
}
.fa-search-modal-go {
  position: absolute;
  right: 50px;
  top: 5px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 8px;
  background: var(--green) url('https://imgcdn.floweraura.com/ssr-build/static/media/search-fa.d3088b11.svg') center/20px no-repeat;
  cursor: pointer;
}
.fa-search-modal-close {
  position: absolute;
  right: 6px;
  top: 5px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 8px;
  background: #f3f4f6;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.fa-cart-link { position: relative; }
.fa-cart-badge {
  position: absolute;
  top: -4px;
  right: 2px;
  background: var(--badge);
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.fa-nav {
  position: relative;
  z-index: 1000;
  background: #fff;
  border-top: 1px solid rgba(134,134,134,.3);
  border-bottom: 1px solid rgba(134,134,134,.3);
}
.fa-nav--panel-open {
  z-index: 2600;
}
.fa-nav-sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
}
.fa-nav--locked {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-top: none;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.12);
}
.fa-nav-spacer {
  width: 100%;
  flex-shrink: 0;
}
.fa-nav-shell {
  display: flex;
  flex-direction: column;
}
.fa-nav-row {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
}
@media (min-width: 769px) {
  .fa-nav--panel-open .fa-nav-row {
    overflow: visible;
  }
}
.fa-nav-row::-webkit-scrollbar { display: none; }
.fa-nav-item {
  position: relative;
  flex-shrink: 0;
}
.fa-nav-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 0 16px;
  line-height: 46px;
  font-size: 14px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  background: transparent;
  text-decoration: none;
}
.fa-nav-top-link:hover,
.fa-nav-top-link.is-open {
  color: var(--teal);
}
.fa-nav-top-link.active,
.fa-nav-item.is-active .fa-nav-top-link {
  color: var(--teal);
  font-weight: 600;
}
.fa-nav-top-link.active::after,
.fa-nav-top-link.is-open::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 24px;
  height: 4px;
  border-radius: 4px;
  background: var(--teal);
}
.fa-nav-chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  margin-top: 2px;
}
.fa-mega-panel {
  padding: 10px 0 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  width: fit-content;
  max-width: calc(100vw - 32px);
  margin: 0;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}
.fa-mega-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fa-mega-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.fa-mega-head h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #111827;
}
.fa-mega-viewall {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.fa-mega-grid {
  display: grid;
  grid-template-columns: repeat(var(--fa-mega-cols, 1), minmax(200px, 240px));
  gap: 0;
  border: 1px solid #edf2f7;
  border-right: 0;
  border-bottom: 0;
  border-radius: inherit;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}
.fa-mega-col {
  padding: 1.15rem 1.2rem 1.3rem;
  border-right: 1px solid #edf2f7;
}
.fa-mega-col:last-child {
  border-right: 0;
}
.fa-mega-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
}
.fa-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fa-mega-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  padding: 4px 0;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.45;
}
.fa-mega-link:hover {
  color: var(--teal);
}
.fa-mega-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #0f766e;
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.fa-mega-badge--new {
  background: #0f766e;
}
.fa-mega-badge--offer {
  background: #dc2626;
}
.fa-nav-panel {
  padding: 20px 0 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), #fff 32%);
}
.fa-nav-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fa-nav-panel-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.fa-nav-panel-head h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #0f172a;
}
.fa-nav-panel-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.fa-nav-panel-viewall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0f766e;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.fa-nav-panel-viewall:hover {
  background: #0d9488;
  color: #fff;
}
.fa-nav-panel-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.fa-nav-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem 1rem;
}
.fa-nav-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.fa-nav-panel-link {
  display: block;
  min-height: 44px;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #fff;
  color: #334155;
  font-size: 0.93rem;
  line-height: 1.35;
  text-decoration: none;
  white-space: normal;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.fa-nav-panel-link:hover,
.fa-nav-panel-link.active {
  background: #f3f8f7;
  color: var(--teal);
  border-color: rgba(20, 184, 166, 0.25);
}

@media (max-width: 768px) {
  .fa-mega-panel,
  .fa-nav-panel {
    display: none;
  }
  .fa-nav-chevron {
    display: none;
  }
}

@media (min-width: 769px) {
  .fa-nav-shell {
    position: relative;
  }
  .fa-mega-panel,
  .fa-nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    z-index: 2601;
  }
  .fa-nav-panel {
    right: 0;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  }
}

/* ── MAIN ── */
.fa-main { min-height: 50vh; }

.fa-flash,
.flash {
  width: var(--wrap);
  margin: 12px auto 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
}
.fa-flash-success, .flash-success { background: #e8f5e9; color: #2e7d32; }
.fa-flash-error, .flash-error { background: #ffebee; color: #d32f2f; }

/* ── HERO SLIDER ── */
.fa-hero { padding: 24px 0 0; }
.fa-hero-box {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  line-height: 0;
}
.fa-hero-box--loading {
  min-height: 280px;
  max-height: 380px;
  background: linear-gradient(110deg, #f3f4f6 8%, #e9ecef 18%, #f3f4f6 33%);
  background-size: 200% 100%;
  animation: fa-hero-shimmer 1.2s linear infinite;
}
@keyframes fa-hero-shimmer {
  to { background-position-x: -200%; }
}
.fa-hero-track { position: relative; }
.fa-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.fa-hero-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.fa-hero-slide img {
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--r);
}
.fa-hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.fa-hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  padding: 0;
  cursor: pointer;
}
.fa-hero-dots button.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ── SECTIONS ── */
.fa-section { padding: 40px 0 0; }
.fa-section-gray { background: #f7f9fa; padding: 40px 0; margin-top: 40px; }

.fa-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.fa-sec-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}
.fa-sec-sub {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  opacity: .75;
}
.fa-btn-outline {
  display: inline-block;
  padding: 8px 0;
  width: 150px;
  text-align: center;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.fa-btn-outline:hover { background: #fff; color: var(--teal); }

/* Category grid (8 items) */
.fa-cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fa-cat-grid li { width: 15%; margin-bottom: 16px; }
.fa-cat-grid a { display: block; text-align: center; }
.fa-cat-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r);
  transition: transform .4s;
}
.fa-cat-grid a:hover img { transform: scale(1.06); }
.fa-cat-grid span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

/* Occasion grid (4 items) */
.fa-occ-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fa-occ-grid li { width: 23.5%; }
.fa-occ-grid a { display: block; text-align: center; }
.fa-occ-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r);
}
.fa-occ-grid span { display: block; margin-top: 10px; font-weight: 500; font-size: 16px; }

/* Product grid */
.fa-prod-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fa-prod-grid > li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 24px;
  display: flex;
}
.fa-prod-grid > li:nth-child(4n) { margin-right: 0; }

.fa-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  height: 100%;
  transition: border-color .2s;
}
.fa-card:hover { border-color: rgba(134,134,134,.8); }
.fa-card-img {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 10px;
  background: #f5f7f8;
  flex-shrink: 0;
}
.fa-card-img img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  height: auto;
  min-height: 255px;
  object-fit: cover;
  display: block;
}
.fa-card-name {
  margin: 10px 0 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fa-card-brand {
  margin: -2px 0 8px;
  font-size: 12px;
  font-weight: 500;
  color: #0e4d65;
}
.fa-card-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.fa-card-price { font-weight: 600; font-size: 14px; }
.fa-card-mrp { color: var(--muted); text-decoration: line-through; font-size: 14px; }
.fa-card-off { color: orange; font-weight: 500; font-size: 14px; }
.fa-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 4px;
}
.fa-star-box {
  background: var(--star);
  color: #fff;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.fa-review-count { color: #197889; font-size: 13px; }
.fa-delivery { font-size: 12px; font-weight: 600; margin-top: 4px; }
.fa-delivery em { color: var(--teal); font-style: normal; }

/* Promo banner */
.fa-promo { padding: 30px 0; }
.fa-promo img { width: 100%; border-radius: var(--r); }

/* Link cards */
.fa-link-cards {
  background: var(--card-bg);
  border-radius: var(--r);
  padding: 40px;
  margin-top: 40px;
}
.fa-link-cards ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.fa-link-cards li {
  display: flex;
  width: 49%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.fa-link-cards .lc-img { width: 55%; flex-shrink: 0; }
.fa-link-cards .lc-img img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.fa-link-cards .lc-body { padding: 24px 28px; }
.fa-link-cards .lc-body h3 { margin: 0 0 16px; font-size: 20px; font-weight: 600; }
.fa-link-cards .lc-body a {
  display: block;
  font-size: 14px;
  color: var(--text);
  opacity: .75;
  margin-bottom: 12px;
}
.fa-link-cards .lc-body a:hover { color: var(--teal); opacity: 1; }

/* Testimonials */
.fa-testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fa-testimonial-grid li { width: 31.3%; }
.fa-review-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  background: #fff;
  min-height: 180px;
}
.fa-review-card p { margin: 0 0 16px; opacity: .75; line-height: 1.6; font-size: 14px; }
.fa-review-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.fa-review-name { font-weight: 600; }

/* Site footer (FlowerAura-style, all pages) */
.gp-site-footer {
  margin-top: 50px;
  width: 100%;
}
.gp-footer-section {
  background: #f4f7f8;
  padding: 20px 0 0;
}
.gp-footer-inner {
  padding: 0 0 20px;
}
.gp-footer-all {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}
.gp-footer-links {
  display: flex;
  flex: 1;
  background: #f4f7f8;
  border-radius: 20px;
  padding: 28px 40px;
  column-gap: 24px;
}
.gp-footer-links-col {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
}
.gp-footer-links-col li { margin: 0 0 14px; }
.gp-footer-links-col a {
  font-size: 14px;
  color: #1c2120;
  text-decoration: none;
  line-height: 1.4;
}
.gp-footer-links-col a:hover { color: var(--teal); }
.gp-footer-divider {
  width: 1px;
  background: #dcdcdc;
  margin: 0 24px;
  flex-shrink: 0;
}
.gp-footer-app {
  flex: 0 0 42%;
  max-width: 520px;
  background: #f4f7f8;
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
}
.gp-footer-app-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: #1c2120;
  text-align: left;
}
.gp-footer-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.gp-footer-qr {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  box-shadow: 0 0 4px 3px rgba(0, 0, 0, 0.01);
  border-radius: 8px;
  background: #fff;
}
.gp-footer-stores {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.gp-footer-stores a { display: block; line-height: 0; }
.gp-footer-stores img { display: block; width: 150px; height: auto; }
.gp-footer-social-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  color: #1c2120;
}
.gp-footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.gp-footer-social a {
  display: block;
  transition: transform 0.2s;
}
.gp-footer-social a:hover { transform: translateY(-4px); }
.gp-footer-social img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.gp-footer-partner {
  background: #fff;
  border-top: 1px solid #e8ecef;
  padding: 18px 0 22px;
}
.gp-footer-partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gp-footer-copy {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gp-footer-logo { text-decoration: none; display: inline-flex; align-items: center; }
.gp-footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.gp-footer-copy span {
  font-size: 12px;
  color: #1c2120;
}
.gp-footer-payments {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gp-footer-payments-label {
  font-size: 13px;
  color: #888;
  white-space: nowrap;
}
.gp-footer-payments-img {
  max-height: 28px;
  width: auto;
  max-width: min(100%, 520px);
}
.gp-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 900;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 4px;
  background: #1c2120;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.gp-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gp-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  line-height: 0;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.gp-whatsapp img { display: block; width: 56px; height: 56px; }

/* ── PRODUCT PAGE (PDP) ── */
.fa-pdp { padding: 20px 0 40px; }
.fa-pdp-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.fa-pdp-crumb a:hover { color: var(--teal); }
.fa-pdp-crumb span:last-child { color: var(--text); }

.fa-pdp-main {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(320px, 1fr);
  gap: 32px;
  align-items: stretch;
}

.fa-pdp-gallery {
  display: flex;
  flex-direction: column;
}

.fa-pdp-hero {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1;
  max-width: 580px;
  width: 100%;
}

.fa-pdp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fa-pdp-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fa-pdp-counter-sep { opacity: .7; }

.fa-pdp-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
  max-width: 580px;
}
.fa-pdp-thumb {
  width: 80px;
  height: 80px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  flex-shrink: 0;
}
.fa-pdp-thumb.active { border-color: var(--teal); }
.fa-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.fa-pdp-trust {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  max-width: 580px;
}

.fa-pdp-trust.fa-pdp-trust--desktop {
  display: flex;
}
.fa-pdp-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
}
.fa-pdp-trust strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.fa-pdp-trust span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.fa-pdp-detail {
  padding-top: 4px;
  min-height: 490px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.fa-pdp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.fa-pdp-head h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.fa-pdp-brand {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.fa-pdp-brand a {
  color: #0e4d65;
  font-weight: 600;
  text-decoration: none;
}
.fa-pdp-brand a:hover { text-decoration: underline; }

.fa-pdp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 16px;
  font-size: 14px;
}
.fa-pdp-star {
  background: var(--star);
  color: #fff;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 13px;
  font-weight: 600;
}
.fa-pdp-rating-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
}
.fa-pdp-reviews-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #197889;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color .15s, text-decoration-color .15s;
}
.fa-pdp-reviews-link:hover {
  color: var(--teal);
  text-decoration-color: var(--teal);
}
.fa-pdp-reviews-link--title {
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}
.fa-pdp-reviews-link--title:hover {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: var(--teal);
}
.fa-pdp-reviews-link-block {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: opacity .15s;
}
.fa-pdp-reviews-link-block:hover {
  opacity: 0.85;
}
.fa-pdp-reviews-link-block span:last-child {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color .15s, text-decoration-color .15s;
}
.fa-pdp-reviews-link-block:hover span:last-child {
  color: var(--teal);
  text-decoration-color: var(--teal);
}
.fa-review-posted {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}
.fa-pdp-reviews-grid {
  margin-bottom: 4px;
}
.fa-pdp-reviews-wrap .fa-pdp-reviews-head h2 {
  margin: 0;
}

.fa-pdp-pricebox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(134,134,134,.25);
}
.fa-pdp-price { font-size: 22px; font-weight: 600; color: var(--text); }
.fa-pdp-mrp { color: var(--muted); text-decoration: line-through; font-size: 16px; }
.fa-pdp-off { color: orange; font-weight: 600; font-size: 15px; }

.fa-pdp-offers { margin-bottom: 20px; }
.fa-pdp-offers h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}
.fa-pdp-offers ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(28,33,32,.8);
  font-size: 14px;
  line-height: 1.7;
}

.fa-pdp-accordions { margin-bottom: 20px; }
.fa-pdp-acc {
  border-top: 1px solid rgba(134,134,134,.25);
  padding: 14px 0;
}
.fa-pdp-acc:last-child { border-bottom: 1px solid rgba(134,134,134,.25); }
.fa-pdp-acc h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
}
.fa-pdp-acc ul {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(28,33,32,.85);
}
.fa-pdp-acc p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(28,33,32,.85);
}
.fa-pdp-care li { margin-bottom: 8px; }

.fa-pdp-sku { margin-bottom: 24px; }
.fa-pdp-sku h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
}
.fa-pdp-sku div {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .04em;
}

.fa-pdp-form { margin: 0; }

.fa-pdp-sticky-wrap {
  position: sticky;
  bottom: 0;
  background: #fff;
  display: flex;
  padding: 10px 0;
  margin-top: auto;
  margin-right: 10px;
  z-index: 20;
}

.fa-pdp-buy-wrap { width: 100%; }

.fa-pdp-button-wrap {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: stretch;
}

.fa-pdp-cart-wrap {
  width: 250px;
  flex-shrink: 0;
}

.fa-pdp-btn-cart,
.fa-pdp-btn-buy {
  width: 100%;
  min-height: 50px;
  height: 50px;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.fa-pdp-btn-cart {
  background: #fff;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.fa-pdp-btn-cart:hover { background: #f4f8fa; }
.fa-pdp-btn-buy {
  flex: 1;
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
  border-radius: 5px;
}
.fa-pdp-btn-buy:hover { background: #0a3d50; border-color: #0a3d50; }

/* FlowerAura add-on slide pane */
.fa-addon-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(28, 28, 28, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fa-addon-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.overflow-detail {
  overflow: hidden;
  position: fixed;
  width: 100%;
  touch-action: none;
}

.new-addon-sheet-handle {
  display: none;
}

.addon_slide_pane.slide-pane_from_bottom.bottomSlidePane {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: 22vh;
  max-height: 78vh;
  background: #fff;
  border-radius: 24px 24px 0 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}
.fa-addon-modal.is-open .addon_slide_pane {
  transform: translateY(0);
}

.new-addon-container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.new-addon-main-container {
  flex: 1;
  overflow-y: auto;
  width: min(1050px, 96%);
  margin: 0 auto;
  padding: 8px 16px 120px;
}
.new-addon-header-title {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.48px;
  margin: 18px 0 0;
}
.new-addon-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 2px 0 24px;
  border-bottom: 1px solid #D9E4E8;
  overflow-x: auto;
}
.new-addon-filter-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: none;
  background: none;
  cursor: pointer;
  color: #494D4D;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24px;
}
.new-addon-filter-button.selected_filter {
  border-bottom: 3px solid #5EA1AC;
}
.filter-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.new-addon-filter-label {
  text-align: center;
  line-height: 1.25;
}
.new-addon-list {
  display: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: stretch;
}
.new-addon-list.active { display: grid; }
.new-addon-card-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.new-addon-card-image {
  position: relative;
  min-height: 170px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f7f8;
}
.new-addon-card-image-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.new-addon-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.new-addon-card-title {
  font-size: 12px;
  font-weight: 500;
  color: #494D4D;
  line-height: 18px;
  letter-spacing: 0.24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 36px;
}
.new-addon-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.new-addon-card-price {
  color: #1C2120;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.new-addon-card-list-price {
  color: #8D908F;
  font-size: 12px;
  font-weight: 400;
  text-decoration: line-through;
}
.new-addon-card-qty-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.new-addon-card-add-btn {
  color: #0E4D65;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #0E4D65;
  background: #EBF7FF;
  padding: 4px 16px;
  width: 70px;
  text-align: center;
  cursor: pointer;
  font: inherit;
}
.new-addon-card-qty {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid #5EA1AC;
  background: #5EA1AC;
  color: #fff;
  padding: 0 4px;
  width: 70px;
  min-height: 32px;
}
.qtyChangeIcon {
  line-height: 24px;
  font-size: 20px;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  padding: 0 4px;
}

.new-addon-footer-container {
  width: min(1050px, 100%);
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 9;
  border-radius: 20px 20px 0 0;
  border: 1px solid rgba(14, 77, 101, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -8px 32px rgba(28, 33, 32, 0.12);
}
.addon-footer-summary { width: 100%; }
.addon-footer-summary-panel {
  max-height: 320px;
  overflow-y: auto;
  padding: 16px 20px;
  border-bottom: 1px solid #e8eef0;
  background: #fafbfc;
}
.addon-summary-card-container {
  display: flex;
  gap: 14px;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid #e8eef0;
  border-radius: 12px;
  background: #fff;
}
.addon-summary-card-container:last-child { margin-bottom: 0; }
.addon-summary-image-small {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.addon-summary-card-container-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  justify-content: center;
  padding: 2px 0;
}
.new_addon_summary_title {
  color: #1c2120;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}
.new_addon_summary_price_card {
  color: #0e4d65;
  font-size: 13px;
  font-weight: 600;
}
.addon-summary-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  gap: 8px;
}
.addon-summary-footer.has-items .new-addon-skip-btn { display: none; }

.new-addon-skip-btn {
  color: #0e4d65;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid rgba(14, 77, 101, 0.2);
  background: #fff;
  font: inherit;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.new-addon-skip-btn:hover {
  background: #f4f8fa;
  border-color: rgba(14, 77, 101, 0.35);
}

.new-addon-continue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0e4d65 0%, #197889 100%);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  cursor: pointer;
  border: none;
  font: inherit;
  box-shadow: 0 4px 14px rgba(14, 77, 101, 0.28);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.new-addon-continue-btn span::after {
  content: '→';
  margin-left: 4px;
  font-size: 15px;
  line-height: 1;
}
.new-addon-continue-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(14, 77, 101, 0.34);
  filter: brightness(1.03);
}
.new-addon-continue-btn:active {
  transform: translateY(0);
}
.new-addon-continue-btn.fullWidthContinueCTA {
  flex: 1;
  width: auto;
  min-height: 42px;
}

.all_summary.addon-items-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #f0f5f7;
  border: 1px solid #dce8ec;
  cursor: pointer;
  font: inherit;
  text-align: left;
  min-width: 0;
  flex: 1;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
}
.all_summary.addon-items-chip:hover {
  background: #e8f2f5;
  border-color: #c5d9e0;
}
.all_summary.is-open .addon-chevron {
  transform: rotate(180deg);
}
.addon-items-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.summary_items {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.summary_item {
  color: #494d4d;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.summary_price {
  color: #0e4d65;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.summary_price::before {
  content: '·';
  margin-right: 8px;
  color: #b0bec5;
  font-weight: 400;
}
.addon-chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid #0e4d65;
  border-bottom: 2px solid #0e4d65;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
  opacity: 0.7;
}
.summary-image-box {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 2px solid #fff;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.summary-image-box:not(:first-child) {
  margin-left: -8px;
}
.summary-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fa-pdp-reviews-wrap {
  background: #f7f9fa;
  padding: 40px 0;
  margin-top: 20px;
  scroll-margin-top: 96px;
}
.fa-pdp-reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.fa-pdp-reviews-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}
.fa-pdp-reviews-score {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fa-pdp-reviews-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.fa-pdp-reviews-stars {
  color: var(--star);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.fa-pdp-reviews-score span:last-child {
  font-size: 13px;
  color: var(--muted);
}

.fa-pdp-review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  max-width: 720px;
}
.fa-pdp-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fa-pdp-reviews-toggle-wrap {
  display: flex;
  justify-content: flex-end;
  margin: 12px 0 0;
  padding: 0;
}
.fa-pdp-reviews-toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  color: #197889;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color .15s, text-decoration-color .15s;
}
.fa-pdp-reviews-toggle:hover {
  color: var(--teal);
  text-decoration-color: var(--teal);
}
a.fa-pdp-reviews-toggle {
  display: inline-block;
}
.fa-product-reviews-page {
  padding: 32px 16px 56px;
  background: #f7f9fa;
  min-height: 50vh;
}
.fa-product-reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.fa-product-reviews-head h1 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
}
.fa-product-reviews-sub {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.fa-product-reviews-back {
  text-decoration: none;
  white-space: nowrap;
}
.fa-pdp-review-stars { color: var(--star); font-size: 14px; margin-bottom: 8px; }
.fa-pdp-review-title { font-weight: 600; margin: 0 0 8px; font-size: 15px; }
.fa-pdp-review-text { margin: 0 0 16px; color: rgba(28,33,32,.75); line-height: 1.6; font-size: 14px; }
.fa-pdp-review-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--muted);
}
.fa-pdp-review-name { font-weight: 600; color: var(--text); }

/* ── CART PAGE (FlowerAura-style) ── */
.fa-cart-page.containerMyCart {
  padding: 24px 16px 80px;
  min-height: 60vh;
}

.emptyCart {
  width: min(450px, 100%);
  margin: 60px auto 80px;
  text-align: center;
}
.emptyCart .ecHead {
  padding: 20px 20px 24px;
  background: #fff;
}
.emptyCart .hippo-card-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cddbe0;
  border-radius: 100px;
  padding: 0 16px;
  margin: 0 auto 20px;
  height: 36px;
}
.emptyCart .hippo-text-container {
  font-size: 14px;
  font-weight: 500;
  color: #0e4d65;
  letter-spacing: 0.28px;
}
.empty-cart-textLabel {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
  color: #0e4d65;
}
.empty-cart-sub {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.emptyCart .ecMid {
  margin: 32px 0 40px;
}
.emptyCart .ecMid img {
  max-width: 140px;
  height: auto;
}
.continue-shopping-container { margin-top: 8px; }
.empty_cart_Continue {
  display: inline-block;
  background: #0e4d65;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 15px 40px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: filter 0.2s, transform 0.15s;
}
.empty_cart_Continue:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.cart-left-right {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  max-width: 1310px;
  margin: 16px auto 80px;
}
.cardDetls {
  flex: 1;
  min-width: 0;
}
.summeryDetls {
  width: min(380px, 100%);
  flex-shrink: 0;
  position: sticky;
  top: 16px;
}
.fa-cart-summary-inner {
  border-radius: 8px;
  border: 1px solid #cddbe0;
  background: #fff;
  padding: 20px;
}
.fa-cart-summary-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: #0e4d65;
}
.fa-cart-summary-rows { margin-bottom: 16px; }
.fa-cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: #494d4d;
  border-bottom: 1px solid #eef3f5;
}
.fa-cart-summary-row:last-child { border-bottom: none; }
.fa-cart-discount { color: #197889; font-weight: 500; }
.fa-cart-coupon {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.fa-cart-coupon input {
  flex: 1;
  min-width: 0;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
}
.fa-cart-coupon button {
  border: 1px solid #0e4d65;
  background: #ebf7ff;
  color: #0e4d65;
  border-radius: 8px;
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.grandTotalTop {
  border-top: 1px solid #e6edf0;
  padding-top: 14px;
  margin-bottom: 16px;
}
.grandTotalTop .grand-total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.grandTotalTop .grand-total {
  font-size: 16px;
  font-weight: 600;
  color: #1c2120;
}
.grandTotalTop .total-price {
  font-size: 20px;
  font-weight: 700;
  color: #0e4d65;
}
.fa-cart-pay-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #0e4d65;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: filter 0.2s;
}
.fa-cart-pay-btn:hover { filter: brightness(1.06); }
.fa-cart-mobile-bar {
  display: none;
}
.fa-cart-summary-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.deliverChargeMsg {
  background: rgba(252, 255, 226, 0.82);
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 14px;
  color: #181818;
  line-height: 1.5;
}
.deliverChargeMsg.dcProductMsg {
  background: #f0faf4 url(https://imgcdn.floweraura.com/confetti.png) no-repeat 12px center;
  background-size: 25px;
  padding-left: 44px;
}

.cartDetlsRep {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #cddbe0;
  background: #fff;
  overflow: hidden;
}
.cartDetlsRep .country_name {
  background: #ebf7ff;
  border-radius: 8px 8px 0 0;
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  gap: 12px;
}
.cartDetlsRep .country_name h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0e4d65;
  letter-spacing: 0.36px;
}
.cartDetlsRep .country_name .express-type {
  background-image: url(https://imgcdn.floweraura.com/ssr-build/static/media/express-icon.66b23d93.svg);
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px;
  background-color: #fff;
  border-radius: 6px;
  padding: 8px 12px 8px 32px;
  font-size: 12px;
  font-weight: 500;
  color: #0e4d65;
  white-space: nowrap;
}
.cartDetlsBottom ul.cardItemRepPar {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cartDetlsBottom ul.cardItemRepPar li.cardItemRep {
  border-bottom: 1px solid #e6edf0;
  padding: 16px;
}
.cartDetlsBottom ul.cardItemRepPar li.cardItemRep:last-child {
  border-bottom: none;
}
.cardItemRep .itemDetls {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cardItemRep .itemDetls .itemImg {
  flex-shrink: 0;
  width: 100px;
}
.cardItemRep .itemDetls .itemImg img {
  width: 100%;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
}
.cart-prod-det {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-prod-det .nameDetls a,
.cart-prod-det .nameDetls {
  font-size: 15px;
  font-weight: 500;
  color: #1c2120;
  text-decoration: none;
  line-height: 1.4;
}
.cart-prod-det .nameDetls a:hover { color: #0e4d65; }
.itemTotal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.itemTotal-label { color: #888; }
.itemTotal-price {
  font-weight: 600;
  color: #0e4d65;
}
.cart-qty-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid #5ea1ac;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.fa-cart-qty-form { margin: 0; }
.fa-cart-qty-btn {
  width: 36px;
  height: 32px;
  border: none;
  background: #5ea1ac;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  font: inherit;
}
.fa-cart-qty-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.fa-cart-qty-val {
  min-width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #1c2120;
  background: #fff;
  line-height: 32px;
}
.fa-cart-remove-form { margin: 0; }
.fa-cart-remove {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  text-decoration: underline;
  width: fit-content;
}
.fa-cart-remove:hover { color: #d32f2f; }
.fa-cart-login-hint {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.fa-cart-login-hint a { color: #0e4d65; font-weight: 500; }

.addonCart_inner {
  padding: 24px 24px 0;
  background: #fff2eb;
  border-radius: 8px;
  margin-top: 24px;
}
.addonCart_inner .addonTitle {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0e4d65;
  letter-spacing: 0.36px;
}
.addonCart-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 20px 0 30px;
  margin: 0 -4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.addonCart-slider::-webkit-scrollbar { display: none; }
.addonCart-slider.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.addonCardList {
  flex: 0 0 160px;
  scroll-snap-align: start;
  border-radius: 6px;
  background: #fff;
  min-height: 262px;
  position: relative;
  padding: 6px;
}
.addonCardList .addonImg span {
  display: block;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.addonCardList .addonImg img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  display: block;
}
.addonCardList .addonCartContent {
  min-height: 110px;
  padding: 4px 2px 40px;
  position: relative;
}
.addonCardList .addon_name {
  margin: 8px 0 10px;
  font-size: 12px;
  line-height: 18px;
  color: #494d4d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.addonCardList .addon_price {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #1c2120;
}
.addonCardList .addonAddToCart {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid #197889;
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #197889;
  background: #fff;
  cursor: pointer;
  font: inherit;
}
.addonCardList .addonAddToCart:hover {
  background: #ebf7ff;
}

/* ── CHECKOUT (5-step FlowerAura-style) ── */
.fa-checkout-body {
  background: #f4f7f8;
}
.fa-co-mobile-top {
  display: none;
}
.fa-co-mobile-progress {
  display: none;
}
.fa-co-mobile-login-hint {
  display: none;
  margin: 16px 0 0;
  font-size: 13px;
  color: #494d4d;
  text-align: center;
}
.fa-co-mobile-login-hint a {
  color: #0e4d65;
  font-weight: 600;
  text-decoration: underline;
}
.fa-co-header {
  background: #fff;
  border-bottom: 1px solid rgba(134, 134, 134, 0.25);
  padding: 14px 0;
}
.fa-co-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.fa-co-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 12px;
  font-weight: 500;
  color: #494d4d;
}
.fa-co-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fa-co-main {
  min-height: calc(100vh - 120px);
  padding: 24px 0 48px;
}
.fa-co-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: start;
}
.fa-co-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  overflow: hidden;
}
.fa-co-step { border-bottom: 1px solid #e6edf0; }
.fa-co-step:last-child { border-bottom: none; }
.fa-co-step-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  border: none;
  background: transparent;
  font: inherit;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.fa-co-step--active .fa-co-step-link {
  background: #fff;
  border-left: 4px solid #0e4d65;
  padding-left: 10px;
}
.fa-co-step--done .fa-co-step-link { background: #fafcfd; }
.fa-co-step--pending .fa-co-step-link {
  opacity: 0.55;
  pointer-events: none;
}
.fa-co-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  background: #e6edf0;
  color: #494d4d;
}
.fa-co-step--active .fa-co-step-num {
  background: #0e4d65;
  color: #fff;
}
.fa-co-step--done .fa-co-step-num {
  background: #49a066;
  color: #fff;
}
.fa-co-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.fa-co-step-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #1c2120;
  line-height: 1.35;
}
.fa-co-step-text em {
  font-style: normal;
  font-size: 11px;
  color: #888;
}
.fa-co-panel {
  background: #fff;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: 0 8px 24px rgba(28, 33, 32, 0.06);
}
.fa-co-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
  color: #1c2120;
}
.fa-co-lede {
  margin: 0 0 24px;
  color: #888;
  font-size: 14px;
  line-height: 1.55;
}
.fa-co-field-hint {
  margin: -8px 0 16px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}
.fa-co-section-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: #1c2120;
}
.fa-co-gift-people {
  margin: 0 0 28px;
  padding: 16px 16px 4px;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  background: #f8fafc;
}
.fa-co-lede--tight {
  margin-bottom: 16px;
}
.fa-co-step-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, 280px);
  gap: 24px;
  align-items: start;
}
.fa-co-form-main { min-width: 0; }
.fa-co-field {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.fa-co-field span {
  font-size: 13px;
  font-weight: 500;
  color: #494d4d;
}
.fa-co-field abbr {
  color: #ea3761;
  text-decoration: none;
}
.fa-co-field input,
.fa-co-field select,
.fa-co-field textarea {
  width: 100%;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  color: #1c2120;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.fa-co-field input:focus,
.fa-co-field select:focus,
.fa-co-field textarea:focus {
  outline: none;
  border-color: #0e4d65;
  box-shadow: 0 0 0 3px rgba(14, 77, 101, 0.12);
}
.fa-co-field-row {
  display: flex;
  gap: 12px;
  align-items: end;
}
.fa-co-field--salutation { width: 110px; flex-shrink: 0; }
.fa-co-field--grow { flex: 1; min-width: 0; }
.fa-co-name-row { margin-bottom: 0; }
.fa-co-phone {
  display: flex;
  align-items: stretch;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  overflow: visible;
  position: relative;
  background: #fff;
}
.fa-co-phone-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: #f4f7f8;
  color: #494d4d;
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid #cddbe0;
  border-radius: 8px 0 0 8px;
}
.fa-co-phone-cc {
  position: relative;
  flex-shrink: 0;
}
.fa-co-phone-cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  min-height: 46px;
  padding: 0 10px 0 12px;
  border: none;
  border-right: 1px solid #cddbe0;
  background: #f4f7f8;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  white-space: nowrap;
}
.fa-co-phone-cc-btn:hover {
  background: #eaf1f4;
}
.fa-co-phone-flag {
  font-size: 16px;
  line-height: 1;
}
.fa-co-phone-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #64748b;
  margin-left: 2px;
}
.fa-co-phone-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 40;
  width: min(320px, 78vw);
  background: #fff;
  border: 1px solid #d7e2e7;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}
.fa-co-phone-search {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #e5eef2 !important;
  border-radius: 0 !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  box-shadow: none !important;
}
.fa-co-phone-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: 260px;
  overflow: auto;
}
.fa-co-phone-list button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  color: #0f172a;
}
.fa-co-phone-list button:hover,
.fa-co-phone-list button.is-active {
  background: #f1f7f5;
}
.fa-co-phone-cname {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fa-co-phone-cdial {
  color: #64748b;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.fa-co-phone-empty {
  padding: 14px;
  color: #64748b;
  font-size: 13px;
}
.fa-co-phone input {
  border: none;
  border-radius: 0 8px 8px 0;
  flex: 1;
  min-width: 0;
}
.fa-co-phone input:focus {
  box-shadow: none;
}
.fa-co-field-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}
.fa-co-or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 1px;
  background: #e6edf0;
  min-height: 280px;
}
.fa-co-or-divider span {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cddbe0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #888;
}
.fa-co-side-card {
  border: 1px solid #e6edf0;
  border-radius: 12px;
  padding: 20px;
  background: #fafcfd;
}
.fa-co-side-card h2 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #0e4d65;
}
.fa-co-side-card p {
  margin: 0 0 16px;
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}
.fa-co-btn-outline {
  display: inline-block;
  width: 100%;
  text-align: center;
  border: 1.5px solid #0e4d65;
  color: #0e4d65;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.fa-co-btn-outline:hover { background: #ebf7ff; }
.fa-co-perks {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  font-size: 12px;
  color: #494d4d;
}
.fa-co-perks li {
  padding: 6px 0 6px 18px;
  position: relative;
}
.fa-co-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #49a066;
  font-weight: 700;
}
.fa-co-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}
.fa-co-actions--split {
  justify-content: space-between;
  gap: 12px;
}
.fa-co-btn-primary {
  border: none;
  background: #0e4d65;
  color: #fff;
  border-radius: 8px;
  padding: 14px 32px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  min-width: 160px;
  transition: filter 0.15s, transform 0.1s;
}
.fa-co-btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.fa-co-btn-pay { min-width: 220px; }
.fa-co-btn-ghost {
  border: 1px solid #cddbe0;
  background: #fff;
  color: #494d4d;
  border-radius: 8px;
  padding: 14px 24px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.fa-co-btn-ghost:hover { background: #f4f7f8; }

.fa-co-error {
  margin: 0 0 16px;
  color: #b91c1c;
  font-size: 14px;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff5f5;
  border: 1px solid #fecaca;
}

.fa-co-address-list {
  border: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.fa-co-address-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.fa-co-address-card:has(input:checked) {
  border-color: #0e4d65;
  background: #ebf7ff;
}
.fa-co-address-card input { margin-top: 4px; accent-color: #0e4d65; }
.fa-co-address-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.fa-co-address-card em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: #888;
  line-height: 1.45;
}
.fa-co-section { margin-bottom: 24px; }
.fa-co-section h2 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: #0e4d65;
}
.fa-co-section-label {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1c2120;
}
.fa-co-section-label abbr { color: #ea3761; text-decoration: none; }
.fa-co-express-tag {
  display: inline-block;
  margin: -12px 0 20px;
  font-size: 13px;
  font-weight: 600;
  color: #0e4d65;
}
.fa-co-date-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.fa-co-date-tab {
  display: block;
  cursor: pointer;
}
.fa-co-date-tab input { position: absolute; opacity: 0; pointer-events: none; }
.fa-co-date-tab-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 88px;
  padding: 14px 12px;
  border: 1.5px solid #cddbe0;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.fa-co-date-tab-inner strong {
  font-size: 15px;
  font-weight: 600;
  color: #0e4d65;
}
.fa-co-date-tab-inner em {
  font-style: normal;
  font-size: 12px;
  color: #888;
}
.fa-co-date-tab--later .fa-co-date-tab-inner svg {
  color: #0e4d65;
  margin-bottom: 2px;
}
.fa-co-date-tab:has(input:checked) .fa-co-date-tab-inner {
  background: #0e4d65;
  border-color: #0e4d65;
  color: #fff;
}
.fa-co-date-tab:has(input:checked) .fa-co-date-tab-inner strong,
.fa-co-date-tab:has(input:checked) .fa-co-date-tab-inner em,
.fa-co-date-tab:has(input:checked) .fa-co-date-tab-inner svg {
  color: #fff;
}
.fa-co-date-picker {
  width: 100%;
  max-width: 280px;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  margin-bottom: 8px;
}

.fa-co-delivery-block {
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eef3f5;
}
.fa-co-delivery-block:last-of-type { border-bottom: none; }
.fa-co-type-head {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 6px;
}
.fa-co-type-head input { accent-color: #0e4d65; width: 18px; height: 18px; }
.fa-co-type-title {
  font-size: 16px;
  font-weight: 600;
  color: #1c2120;
}
.fa-co-type-price {
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  color: #0e4d65;
}
.fa-co-type-price--free { color: #49a066; }
.fa-co-type-hint {
  margin: 0 0 14px 28px;
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}
.fa-co-slot-grid--times {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-left: 28px;
}
.fa-co-time-slot {
  display: block;
  cursor: pointer;
  position: relative;
}
.fa-co-time-slot input { position: absolute; opacity: 0; pointer-events: none; }
.fa-co-time-slot span {
  display: block;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  background: #fff;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.fa-co-time-slot em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: #197889;
  text-align: center;
}
.fa-co-time-slot:has(input:checked) span {
  background: #0e4d65;
  border-color: #0e4d65;
  color: #fff;
}
.fa-co-time-slot:has(input:checked) em { color: rgba(255,255,255,0.85); }

.fa-co-step-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e6edf0;
}
.fa-co-step-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fa-co-step-thumbs img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e6edf0;
}
.fa-co-step-footer-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.fa-co-date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.fa-co-date-pill {
  display: block;
  cursor: pointer;
}
.fa-co-date-pill input { position: absolute; opacity: 0; pointer-events: none; }
.fa-co-date-pill span {
  display: block;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}
.fa-co-date-pill input:checked + .fa-co-date-label,
.fa-co-date-pill input:checked ~ .fa-co-date-sub {
  color: inherit;
}
.fa-co-date-pill:has(input:checked) span {
  border-color: #0e4d65;
  background: #ebf7ff;
}
.fa-co-date-label {
  font-size: 14px;
  font-weight: 600;
  color: #1c2120;
}
.fa-co-date-sub {
  margin-top: 4px;
  font-size: 11px;
  color: #888;
}
.fa-co-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.fa-co-slot-pill {
  display: block;
  cursor: pointer;
}
.fa-co-slot-pill input { position: absolute; opacity: 0; pointer-events: none; }
.fa-co-slot-pill span {
  display: block;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 14px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}
.fa-co-slot-pill em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 11px;
  color: #197889;
  font-weight: 600;
}
.fa-co-slot-pill:has(input:checked) span {
  border-color: #0e4d65;
  background: #ebf7ff;
}
.fa-co-slot-pill--special span {
  border-color: #f5c4a8;
  background: #fff8f4;
}
.fa-co-slot-pill--special:has(input:checked) span {
  border-color: #0e4d65;
  background: #ebf7ff;
}
.fa-co-char-count {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}
.fa-co-surprise {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 16px 0;
  cursor: pointer;
  background: #fafcfd;
}
.fa-co-surprise input { margin-top: 3px; accent-color: #0e4d65; }
.fa-co-surprise strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.fa-co-surprise em {
  font-style: normal;
  font-size: 12px;
  color: #888;
}
.fa-co-tip {
  background: #fff8f4;
  border: 1px solid #f5dccf;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: #494d4d;
  margin-bottom: 8px;
}
.fa-co-pay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}
.fa-co-pay-methods {
  border: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.fa-co-pay-methods legend {
  font-size: 15px;
  font-weight: 600;
  color: #0e4d65;
  margin-bottom: 12px;
}
.fa-co-pay-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
}
.fa-co-pay-card:has(input:checked) {
  border-color: #0e4d65;
  background: #ebf7ff;
}
.fa-co-pay-card input { accent-color: #0e4d65; margin-top: 3px; }
.fa-co-pay-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.fa-co-pay-card em {
  font-style: normal;
  font-size: 12px;
  color: #888;
}
.fa-co-pay-info {
  grid-column: 1 / -1;
  margin-top: 8px;
}
.gp-pay-info {
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e6edf0;
  background: #fafcfd;
}
.gp-pay-info-title {
  margin: 0 0 8px;
  font: 600 13px Poppins, sans-serif;
  color: #0e4d65;
}
.gp-pay-info-hint {
  margin: 0 0 10px;
  font-size: 12px;
  color: #888;
}
.gp-pay-info-bank-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.gp-pay-info-bank-list li {
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e6edf0;
  display: grid;
  gap: 2px;
  font-size: 12px;
}
.gp-pay-info-bank-list strong { color: #0e4d65; }
.gp-pay-info-fields {
  display: grid;
  gap: 10px;
}
.gp-pay-info-fields label {
  display: grid;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
}
.gp-pay-info-fields .gp-adm-input,
.gp-pay-info-fields input {
  padding: 10px 12px;
  border: 1px solid #e6edf0;
  border-radius: 8px;
  font: inherit;
}
.gp-card-pay-full { grid-column: 1 / -1; }
.gp-card-pay-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gp-card-pay .gp-adm-btn {
  margin-top: 4px;
  justify-self: start;
}
.fa-co-review {
  border: 1px solid #e6edf0;
  border-radius: 8px;
  padding: 16px;
  background: #fafcfd;
}
.fa-co-review h2 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  color: #0e4d65;
}
.fa-co-review-list {
  margin: 0;
  display: grid;
  gap: 10px;
}
.fa-co-review-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  font-size: 13px;
}
.fa-co-review-list dt {
  margin: 0;
  color: #888;
  font-weight: 500;
}
.fa-co-review-list dd {
  margin: 0;
  color: #1c2120;
  line-height: 1.45;
}
.fa-co-mini-summary {
  position: sticky;
  top: 16px;
}
.fa-co-mini-inner {
  background: #fff;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 18px;
}
.fa-co-mini-inner h2 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
  color: #0e4d65;
}
.fa-co-mini-summary-toggle {
  display: none;
  list-style: none;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #0e4d65;
}
.fa-co-mini-summary-toggle::-webkit-details-marker { display: none; }
.fa-co-mini-summary-toggle strong {
  font-size: 16px;
  color: #0e4d65;
}

@media (min-width: 769px) {
  .fa-co-mini-summary {
    display: block !important;
  }

  .fa-co-mini-details > summary.fa-co-mini-summary-toggle {
    display: none !important;
  }

  .fa-co-mini-details .fa-co-mini-body {
    display: block !important;
  }
}

.fa-co-mini-items {
  list-style: none;
  margin: 0 0 14px;
  padding: 0 0 14px;
  border-bottom: 1px solid #e6edf0;
  display: grid;
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
}
.fa-co-mini-items li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.fa-co-mini-items img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.fa-co-mini-items strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 2px;
}
.fa-co-mini-items span {
  font-size: 11px;
  color: #888;
}
.fa-co-mini-rows {
  display: grid;
  gap: 8px;
  font-size: 13px;
}
.fa-co-mini-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #494d4d;
}
.fa-co-mini-discount { color: #197889; }
.fa-co-mini-total {
  border-top: 1px solid #e6edf0;
  padding-top: 10px;
  margin-top: 4px;
  font-weight: 700;
  color: #0e4d65 !important;
  font-size: 15px !important;
}
.fa-co-edit-cart {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #0e4d65;
  text-decoration: underline;
}
.fa-co-footer {
  background: #fff;
  border-top: 1px solid #e6edf0;
  padding: 14px 0;
  text-align: center;
  font-size: 12px;
  color: #888;
}
.fa-co-footer a { color: #0e4d65; font-weight: 600; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── ORDER SUCCESS ── */
.fa-success-body { background: #f4f7f8; }
.fa-success-page { padding: 24px 0 64px; }
.fa-success-top { margin-bottom: 20px; }
.fa-success-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #dce8ec;
  border-left: 4px solid #49a066;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(28, 33, 32, 0.05);
}
.fa-success-banner-main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.fa-success-icon {
  flex-shrink: 0;
  animation: faSuccessPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes faSuccessPop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.fa-success-banner-copy { min-width: 0; }
.fa-success-eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #49a066;
}
.fa-success-title {
  margin: 0 0 4px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  color: #1c2120;
}
.fa-success-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #888;
}
.fa-success-sub strong { font-weight: 600; color: #494d4d; }
.fa-success-order-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: #f4f8fa;
  border: 1px solid #e0eaee;
  border-radius: 10px;
  padding: 10px 10px 10px 14px;
}
.fa-success-order-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fa-success-order-meta span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}
.fa-success-order-meta strong {
  font-size: 15px;
  letter-spacing: 0.03em;
  color: #0e4d65;
}
.fa-success-copy {
  border: none;
  background: #fff;
  color: #0e4d65;
  border: 1px solid #cddbe0;
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.fa-success-copy:hover { background: #ebf7ff; }

.fa-success-main { position: relative; }
.fa-success-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.fa-success-card {
  background: #fff;
  border: 1px solid #cddbe0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(28, 33, 32, 0.08);
}
.fa-success-card h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0e4d65;
}
.fa-success-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.fa-success-progress {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.fa-success-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 72px;
  flex-shrink: 0;
  text-align: center;
}
.fa-success-progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e6edf0;
  color: #888;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #e6edf0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.fa-success-progress-step.is-done .fa-success-progress-dot {
  background: #49a066;
  border-color: #49a066;
  color: #fff;
}
.fa-success-progress-step.is-current .fa-success-progress-dot {
  background: #0e4d65;
  border-color: #0e4d65;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(14, 77, 101, 0.18);
}
.fa-success-progress-dot svg {
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.fa-success-progress-dot span {
  line-height: 1;
}
.fa-success-progress-label {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  line-height: 1.3;
  max-width: 80px;
}
.fa-success-progress-step.is-done .fa-success-progress-label,
.fa-success-progress-step.is-current .fa-success-progress-label {
  color: #1c2120;
  font-weight: 600;
}
.fa-success-progress-line {
  flex: 1;
  height: 2px;
  background: #e6edf0;
  margin-top: 16px;
  min-width: 12px;
}
.fa-success-progress-line.is-done { background: #49a066; }
.fa-success-track-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 13px;
  color: #888;
}
.fa-success-track-link {
  font-size: 14px;
  font-weight: 600;
  color: #0e4d65;
  text-decoration: none;
}
.fa-success-track-link:hover { text-decoration: underline; }

.fa-success-items {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #e6edf0;
  display: grid;
  gap: 14px;
}
.fa-success-items li {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
}
.fa-success-items img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}
.fa-success-addon-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #fff2eb;
  color: #0e4d65;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}
.fa-success-items strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 1.35;
}
.fa-success-items span {
  font-size: 12px;
  color: #888;
}
.fa-success-items em {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: #0e4d65;
  white-space: nowrap;
}
.fa-success-meta {
  margin: 0;
  display: grid;
  gap: 14px;
}
.fa-success-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  font-size: 13px;
}
.fa-success-meta dt {
  margin: 0;
  color: #888;
  font-weight: 500;
}
.fa-success-meta dd {
  margin: 0;
  color: #1c2120;
  line-height: 1.45;
}
.fa-success-message {
  font-style: italic;
  color: #494d4d !important;
}
.fa-success-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e6edf0;
  font-size: 15px;
}
.fa-success-total-row strong {
  font-size: 22px;
  font-weight: 700;
  color: #0e4d65;
}
.fa-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.fa-success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 28px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: filter 0.15s, transform 0.1s;
}
.fa-success-btn--primary {
  background: #0e4d65;
  color: #fff;
  min-width: 200px;
}
.fa-success-btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.fa-success-btn--ghost {
  background: #fff;
  color: #0e4d65;
  border: 1.5px solid #cddbe0;
}
.fa-success-btn--ghost:hover { background: #f4f7f8; }
.fa-success-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e6edf0;
  border-radius: 12px;
  font-size: 13px;
  color: #494d4d;
}
.fa-success-trust div {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── TRACK PAGE ── */
.fa-track-body {
  background: #f4f7f8;
}

.fa-track-page {
  padding-bottom: 48px;
}

.fa-track-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 28px 16px 24px;
  background: #fff;
  border-bottom: 1px solid #e6edf0;
}

.fa-track-hero-copy h1 {
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #1c2120;
}

.fa-track-hero-copy p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.fa-track-search {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: min(420px, 100%);
}

.fa-track-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid #cddbe0;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  background: #fff;
}

.fa-track-search input:focus {
  outline: none;
  border-color: #0e4d65;
  box-shadow: 0 0 0 3px rgba(14, 77, 101, 0.12);
}

.fa-track-search-btn {
  border: none;
  background: #0e4d65;
  color: #fff;
  border-radius: 10px;
  padding: 12px 22px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.fa-track-search-btn:hover {
  filter: brightness(1.06);
}

.fa-track-body-inner {
  padding-top: 24px;
}

.fa-track-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: start;
}

.fa-track-main {
  display: grid;
  gap: 20px;
}

.fa-track-card {
  background: #fff;
  border: 1px solid #cddbe0;
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 6px 20px rgba(28, 33, 32, 0.05);
}

.fa-track-card-title {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 600;
  color: #0e4d65;
}

.fa-track-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.fa-track-eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.fa-track-card-top h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  color: #0e4d65;
  letter-spacing: 0.03em;
}

.fa-track-headline {
  margin: 0;
  font-size: 14px;
  color: #494d4d;
  line-height: 1.45;
}

.fa-track-progress {
  margin-top: 8px;
}

.fa-success-progress-label em {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: #197889;
  font-weight: 500;
  margin-top: 2px;
}

.fa-track-live-map {
  position: relative;
  height: 220px;
  border-radius: 12px;
  border: 1px solid #dce8ec;
  background: linear-gradient(180deg, #eef7f2 0%, #f8fbfb 100%);
  overflow: hidden;
  margin-bottom: 20px;
}

.fa-track-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#dce8e2 1px, transparent 1px),
    linear-gradient(90deg, #dce8e2 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
}

.fa-track-map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(28, 33, 32, 0.2);
}

.fa-track-map-pin--home {
  right: 18%;
  top: 28%;
  background: #49a066;
  box-shadow: 0 0 0 4px rgba(73, 160, 102, 0.2);
}

.fa-track-map-pin--rider {
  left: 22%;
  top: 58%;
  background: #0e4d65;
  box-shadow: 0 0 0 4px rgba(14, 77, 101, 0.22);
  transition: left 1.2s ease, top 1.2s ease;
}

.fa-track-map-eta {
  position: absolute;
  left: 12px;
  bottom: 12px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  color: #1c2120;
  box-shadow: 0 4px 12px rgba(28, 33, 32, 0.08);
}

.fa-track-live-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ea3761;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: faTrackPulse 2s ease-in-out infinite;
}

@keyframes faTrackPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.fa-track-items {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6edf0;
}

.fa-track-meta {
  margin: 0;
  display: grid;
  gap: 14px;
}

.fa-track-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  font-size: 13px;
}

.fa-track-meta dt {
  margin: 0;
  color: #888;
  font-weight: 500;
}

.fa-track-meta dd {
  margin: 0;
  color: #1c2120;
  line-height: 1.45;
}

.fa-track-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e6edf0;
  font-size: 15px;
}

.fa-track-total strong {
  font-size: 22px;
  color: #0e4d65;
}

.fa-track-side {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 16px;
}

.fa-track-rider {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.fa-track-rider-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e4d65, #197889);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.fa-track-rider strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.fa-track-rider span {
  display: block;
  font-size: 12px;
  color: #888;
}

.fa-track-rider-plate {
  display: inline-block !important;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f4f7f8;
  border: 1px solid #dce8ec;
  font-weight: 600 !important;
  color: #494d4d !important;
  width: fit-content;
}

.fa-track-btn {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  padding: 12px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: filter 0.15s, background 0.15s;
}

.fa-track-btn + .fa-track-btn {
  margin-top: 10px;
}

.fa-track-btn--ghost {
  background: #f4f7f8;
  color: #0e4d65;
  border: 1px solid #dce8ec;
}

.fa-track-btn--outline {
  background: #fff;
  color: #0e4d65;
  border: 1.5px solid #0e4d65;
}

.fa-track-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.fa-track-btn--whatsapp:hover {
  filter: brightness(1.05);
}

.fa-track-help-card p {
  margin: 0 0 16px;
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.fa-track-empty {
  max-width: 480px;
  margin: 40px auto;
  padding: 32px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #dce8ec;
  border-radius: 12px;
}

.fa-track-empty img {
  margin: 0 auto 16px;
  opacity: 0.85;
}

.fa-track-empty h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: #1c2120;
}

.fa-track-empty p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.fa-track-empty--error .fa-track-empty-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #ffebee;
  color: #d32f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.fa-track-tips {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 13px;
  color: #494d4d;
}

.fa-track-tips li {
  padding: 8px 0 8px 20px;
  position: relative;
  border-top: 1px solid #eef3f5;
}

.fa-track-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0e4d65;
  font-weight: 600;
}

.fa-track-tips a {
  color: #0e4d65;
  font-weight: 600;
}

.fa-track-visual {
  margin-top: 32px;
  padding: 0 16px 8px;
}

.fa-track-visual-inner {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ebf7ff 0%, #f0faf4 45%, #fff8f4 100%);
  border: 1px solid #dce8ec;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(14, 77, 101, 0.08);
}

.fa-track-visual-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #197889;
}

.fa-track-visual-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  color: #0e4d65;
}

.fa-track-visual-copy > p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #494d4d;
  max-width: 420px;
}

.fa-track-visual-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.fa-track-visual-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(14, 77, 101, 0.12);
  font-size: 12px;
  font-weight: 600;
  color: #1c2120;
}

.fa-track-visual-art {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.fa-track-visual-art img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(28, 33, 32, 0.12));
}

@media print {
  .fa-header, .fa-nav, .gp-site-footer, .gp-scroll-top, .gp-whatsapp, .fa-success-actions, .fa-success-trust, .fa-success-copy { display: none !important; }
  .fa-success-banner { box-shadow: none; break-inside: avoid; }
  .fa-success-card { box-shadow: none; break-inside: avoid; }
}

/* ── AUTH / MY ACCOUNT ── */
.fa-auth {
  padding: 36px 0 56px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(73, 160, 102, .08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(14, 77, 101, .07), transparent 50%),
    linear-gradient(180deg, #f4f8fa 0%, #fff 100%);
}

.fa-auth-shell {
  display: grid;
  grid-template-columns: 1.05fr minmax(340px, 440px);
  gap: 28px;
  align-items: stretch;
}

.fa-auth-shell--narrow {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
}

.fa-auth-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(145deg, #e8f4fc 0%, #f7fbfd 45%, #eef8f2 100%);
  border: 1px solid rgba(14, 77, 101, .12);
  overflow: hidden;
  min-height: 520px;
}

.fa-auth-visual::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(73, 160, 102, .12);
}

.fa-auth-visual-inner { position: relative; z-index: 1; }

.fa-auth-eyebrow {
  margin: 0 0 10px;
  font: 600 11px Poppins, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}

.fa-auth-visual h1 {
  margin: 0 0 12px;
  font: 700 34px/1.15 Poppins, sans-serif;
  color: var(--teal);
  max-width: 14ch;
}

.fa-auth-visual h1 span { color: var(--green); }

.fa-auth-lede {
  margin: 0 0 24px;
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.65;
  color: #4a5d66;
}

.fa-auth-perks {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.fa-auth-perks article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .9);
  backdrop-filter: blur(4px);
}

.fa-auth-perks article strong {
  grid-column: 2;
  font: 600 14px Poppins, sans-serif;
  color: var(--text);
}

.fa-auth-perks article span:last-child {
  grid-column: 2;
  font-size: 12px;
  color: var(--muted);
}

.fa-auth-perk-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff center/22px no-repeat;
  box-shadow: 0 4px 14px rgba(14, 77, 101, .08);
}

.fa-auth-perk-icon--track {
  background-image: url("https://imgcdn.floweraura.com/ssr-build/static/media/trackorder-icon.50566c8d.svg");
}

.fa-auth-perk-icon--wallet {
  background-image: url("https://imgcdn.floweraura.com/ssr-build/static/media/wallet.3e683a66.svg");
}

.fa-auth-perk-icon--address {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e4d65'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
}

.fa-auth-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.fa-auth-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
}

.fa-auth-art {
  position: relative;
  z-index: 1;
  align-self: center;
}

.fa-auth-art img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 16px 40px rgba(14, 77, 101, .15);
}

.fa-auth-card {
  background: #fff;
  border: 1px solid #d8e4ea;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(14, 77, 101, .08);
  align-self: center;
}

.fa-auth-card--center {
  text-align: center;
  padding: 32px 28px;
}

.fa-auth-card-head {
  text-align: center;
  margin-bottom: 22px;
}

.fa-auth-logo {
  display: inline-block;
  font: 700 26px Poppins, sans-serif;
  color: var(--teal);
}

.fa-auth-logo span { color: var(--green); }

.fa-auth-card-head p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.fa-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 22px;
  padding: 5px;
  background: #edf2f5;
  border-radius: 12px;
}

.fa-auth-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 9px;
  padding: 12px;
  background: transparent;
  font: 600 14px Poppins, sans-serif;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
}

.fa-auth-tab.active {
  background: #fff;
  color: var(--teal);
  box-shadow: 0 4px 14px rgba(14, 77, 101, .1);
}

.fa-auth-tab-icon {
  width: 18px;
  height: 18px;
  background: center/contain no-repeat;
  opacity: .85;
}

.fa-auth-tab.active .fa-auth-tab-icon { opacity: 1; }

.fa-auth-tab-icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e4d65'%3E%3Cpath d='M6.6 10.8c1.5 2.9 3.7 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
}

.fa-auth-tab-icon--email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e4d65'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.fa-auth-form { display: grid; gap: 16px; }

.fa-auth-field { display: grid; gap: 8px; }

.fa-auth-label {
  font: 600 13px Poppins, sans-serif;
  color: var(--text);
}

.fa-auth-panel { display: none; }
.fa-auth-panel.active { display: block; }

.fa-auth-phone-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.fa-auth-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #d5e0e6;
  border-radius: 10px;
  background: #f7fafb;
  font: 600 14px Poppins, sans-serif;
  color: var(--teal);
}

.fa-auth-form input[type="tel"],
.fa-auth-form input[type="email"],
.fa-auth-form input[type="text"] {
  width: 100%;
  height: 50px;
  border: 1px solid #d5e0e6;
  border-radius: 10px;
  padding: 0 14px;
  font: 400 15px Poppins, sans-serif;
  color: var(--text);
  outline: none;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}

.fa-auth-phone-row input { flex: 1; min-width: 0; }

.fa-auth-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(14, 77, 101, .1);
}

.fa-auth-hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.fa-auth-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff5f5;
  border: 1px solid #ffcdd2;
  color: #c62828;
  font-size: 13px;
  line-height: 1.4;
}

.fa-auth-submit {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, #0e5a74 0%, var(--teal) 100%);
  color: #fff;
  font: 600 15px Poppins, sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(14, 77, 101, .22);
  transition: transform .12s, box-shadow .12s, filter .12s;
}

.fa-auth-submit:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(14, 77, 101, .28);
}

.fa-auth-submit:active { transform: translateY(1px); }

.fa-auth-submit--link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fa-auth-submit--ghost {
  margin-top: 10px;
  background: #fff;
  color: #0e4d65;
  border: 1.5px solid #0e4d65;
  box-shadow: none;
}

.fa-auth-submit--ghost:hover {
  background: #ebf7ff;
  filter: none;
  box-shadow: none;
}

.fa-auth-signed-in {
  max-width: 460px;
  margin: 0 auto;
}

.fa-auth-signed-in-name {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1c2120;
}

.fa-auth-signed-in-lede {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
}

.fa-auth-signed-in-actions {
  display: grid;
  gap: 0;
}

.fa-auth-demo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f3faf5 0%, #fff 100%);
  border: 1px solid rgba(73, 160, 102, .22);
  text-align: left;
}

.fa-auth-demo-tag {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font: 700 10px Poppins, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fa-auth-demo p { margin: 0 0 4px; font-size: 13px; }
.fa-auth-demo p:last-child { margin-bottom: 0; color: var(--muted); font-size: 12px; }
.fa-auth-demo code { color: var(--teal); font-weight: 600; font-size: 12px; }

.fa-auth-foot {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.fa-auth-forgot-row {
  display: flex;
  justify-content: flex-end;
  margin: 10px 0 0;
}

.fa-auth-forgot {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal, #0e4d65);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fa-auth-forgot:hover {
  opacity: 0.85;
}

.fa-auth-help {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f4f8f7;
  border: 1px solid #e3eeea;
  font-size: 13px;
  line-height: 1.55;
  color: #334155;
}

.fa-auth-help p {
  margin: 0 0 10px;
}

.fa-auth-help p:last-child {
  margin-bottom: 0;
}

.fa-auth-help a {
  color: var(--teal, #0e4d65);
  font-weight: 650;
}

.fa-auth-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fa-auth-or::before,
.fa-auth-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line, #e6e6e6);
}

.fa-auth-google {
  display: flex;
  justify-content: center;
  min-height: 44px;
}

/* Verify OTP */
.fa-auth--verify { padding-top: 48px; }

.fa-auth-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.fa-auth-steps span:not(.line) {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 600 12px Poppins, sans-serif;
  background: #edf2f5;
  color: var(--muted);
}

.fa-auth-steps span.done {
  background: rgba(73, 160, 102, .15);
  color: var(--green);
}

.fa-auth-steps span.active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(14, 77, 101, .25);
}

.fa-auth-steps .line {
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: #e2eaee;
}

.fa-auth-steps .line.done { background: rgba(73, 160, 102, .45); }

.fa-auth-verify-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: #e8f4fc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e4d65'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E") center/28px no-repeat;
}

.fa-auth-verify-title {
  margin: 0 0 8px;
  font: 700 24px Poppins, sans-serif;
  color: var(--teal);
}

.fa-auth-verify-lede {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.fa-auth-verify-dest {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  word-break: break-word;
}

.fa-auth-demo-otp {
  margin: 0 0 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f3faf5;
  border: 1px solid rgba(73, 160, 102, 0.25);
  font-size: 14px;
  color: var(--green);
}

.fa-auth-demo-otp strong {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.fa-auth-destination {
  margin: 0 auto 22px;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f4f8fa;
  border: 1px solid #dde8ed;
}

.fa-auth-destination-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.fa-auth-destination strong {
  font: 600 15px Poppins, sans-serif;
  color: var(--teal);
  word-break: break-word;
}

.fa-auth-otp-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}

.fa-auth-otp-boxes input {
  width: 100%;
  height: 54px;
  border: 1px solid #d5e0e6;
  border-radius: 12px;
  text-align: center;
  font: 700 22px Poppins, sans-serif;
  color: var(--teal);
  outline: none;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}

.fa-auth-otp-boxes input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(14, 77, 101, .1);
}

.fa-auth-verify-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.fa-auth-resend-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 16px;
}

.fa-auth-resend-change {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.fa-auth-resend-change:hover {
  color: var(--teal);
  text-decoration: underline;
}

.fa-auth-resend {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
}

.fa-auth-resend:hover:not(:disabled) { text-decoration: underline; }

.fa-auth-resend:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.fa-auth-dot { color: #c5d0d6; }

/* My account dashboard */
.fa-account {
  padding: 28px 0 52px;
  background: linear-gradient(180deg, #f7fafb 0%, #fff 120px);
}

.fa-account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

.fa-account-nav {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid #d8e4ea;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(14, 77, 101, .05);
}

.fa-account-nav-title {
  margin: 0 0 8px;
  padding: 0 10px;
  font: 600 11px Poppins, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.fa-account-nav-link {
  padding: 11px 12px;
  border-radius: 10px;
  color: #5a676d;
  font: 500 14px Poppins, sans-serif;
  transition: background .12s, color .12s;
}

.fa-account-nav-link:hover,
.fa-account-nav-link.active {
  background: linear-gradient(90deg, #e8f4fc 0%, #f3fafc 100%);
  color: var(--teal);
}

.fa-account-nav-link.active { font-weight: 600; }

.fa-account-nav-link--muted { color: var(--muted); }

.fa-account-nav-link--btn {
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.fa-account-nav-divider {
  height: 1px;
  margin: 8px 4px;
  background: #e8eef1;
}

.fa-account-main {
  border: 1px solid #d8e4ea;
  border-radius: 20px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(14, 77, 101, .06);
}

.fa-account-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #e8f4fc 0%, #f8fcfe 55%, #f2faf5 100%);
  border-bottom: 1px solid #dde8ed;
}

.fa-account-profile {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.fa-account-avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--teal) 0%, #0a3d50 100%);
  color: #fff;
  font: 700 26px Poppins, sans-serif;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(14, 77, 101, .2);
}

.fa-account-avatar--img {
  object-fit: cover;
  background: #e7eef2;
}

.fa-account-eyebrow {
  margin: 0 0 4px;
  font: 600 11px Poppins, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
}

.fa-account-hero h1 {
  margin: 0 0 10px;
  font: 700 26px Poppins, sans-serif;
  color: var(--teal);
}

.fa-account-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fa-account-chip {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(14, 77, 101, .1);
  font-size: 12px;
  color: #4a5d66;
}

.fa-account-wallet {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(73, 160, 102, .28);
  background: #fff;
  min-width: 170px;
  text-align: right;
  box-shadow: 0 6px 18px rgba(73, 160, 102, .1);
  transition: transform .12s, box-shadow .12s;
}

.fa-account-wallet:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(73, 160, 102, .14);
}

.fa-account-wallet-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.fa-account-wallet strong {
  font: 700 24px Poppins, sans-serif;
  color: var(--green);
}

.fa-account-wallet em {
  font-size: 12px;
  font-style: normal;
  color: var(--teal);
  font-weight: 500;
}

.fa-account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8eef1;
  border-bottom: 1px solid #e8eef1;
}

.fa-account-stats article {
  padding: 18px 20px;
  background: #fff;
  display: grid;
  gap: 4px;
}

.fa-account-stats strong {
  font: 700 20px Poppins, sans-serif;
  color: var(--teal);
}

.fa-account-stats span {
  font-size: 12px;
  color: var(--muted);
}

.fa-account-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 28px 0;
}

.fa-account-section-head h2 {
  margin: 0;
  font: 600 18px Poppins, sans-serif;
  color: var(--text);
}

.fa-account-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
}

.fa-account-link:hover { text-decoration: underline; }

.fa-account-empty {
  margin: 20px 28px 28px;
  padding: 40px 24px;
  text-align: center;
  border: 1px dashed #d0dde3;
  border-radius: 16px;
  background: #fafcfd;
}

.fa-account-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e8f4fc url("https://imgcdn.floweraura.com/ssr-build/static/media/cart-fa.deca25a0.svg") center/26px no-repeat;
}

.fa-account-empty h3 {
  margin: 0 0 8px;
  font: 600 18px Poppins, sans-serif;
  color: var(--teal);
}

.fa-account-empty p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.fa-account-orders {
  display: grid;
  gap: 12px;
  padding: 16px 28px 28px;
}

.fa-account-order {
  padding: 16px 18px;
  border: 1px solid #e2eaee;
  border-radius: 14px;
  background: #fff;
  transition: border-color .12s, box-shadow .12s;
}

.fa-account-order:hover {
  border-color: #c5d8e0;
  box-shadow: 0 6px 18px rgba(14, 77, 101, .06);
}

.fa-account-order-top,
.fa-account-order-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fa-account-order-top { margin-bottom: 12px; }

.fa-account-order-id {
  display: block;
  font: 600 15px Poppins, sans-serif;
  color: var(--teal);
}

.fa-account-order-city {
  font-size: 12px;
  color: var(--muted);
}

.fa-account-order-bottom strong {
  font: 700 16px Poppins, sans-serif;
  color: var(--text);
}

.fa-account-order-bottom a {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.fa-account-order-bottom a:hover { text-decoration: underline; }

.fa-account-hero--compact {
  padding: 20px 24px;
}

.fa-account-hero--compact h1 {
  font-size: 22px;
  margin-bottom: 8px;
}

.fa-account-wallet-panel,
.fa-account-addresses,
.fa-account-reviews,
.fa-account-profile-form {
  padding: 0 24px 28px;
}

.fa-account-wallet-balance {
  margin: 0 24px 20px;
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0e4d65 0%, #156b85 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(14, 77, 101, .2);
}

.fa-account-wallet-balance span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
}

.fa-account-wallet-balance strong {
  display: block;
  margin: 6px 0;
  font: 700 34px Poppins, sans-serif;
}

.fa-account-wallet-balance p {
  margin: 0;
  font-size: 13px;
  opacity: .9;
}

.fa-account-wallet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 24px 28px;
}

.fa-wallet-layout { align-items: start; }
.fa-wallet-topup-card {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 16px;
}
.fa-wallet-topup-head h3 { margin-bottom: 4px; }
.fa-wallet-topup-head .fa-account-form-lede { margin-bottom: 16px; }

.fa-wallet-amount-section { margin-bottom: 16px; }
.fa-wallet-amount-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.fa-wallet-amount-label {
  font-size: 13px;
  font-weight: 600;
  color: #0e4d65;
}
.fa-wallet-amount-hint {
  font-size: 11px;
  color: #888;
  text-align: right;
  line-height: 1.35;
}
.fa-wallet-amount-hint.ok { color: #1f9d55; font-weight: 500; }
.fa-wallet-amount-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.fa-wallet-amount-chip {
  border: 1px solid #cddbe0;
  border-radius: 10px;
  background: #fff;
  padding: 10px 8px;
  font: 600 13px Poppins, sans-serif;
  color: #1c2120;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, transform .1s;
}
.fa-wallet-amount-chip:hover { border-color: #0e4d65; }
.fa-wallet-amount-chip:active { transform: scale(0.98); }
.fa-wallet-amount-chip.active {
  border-color: #0e4d65;
  background: #ebf7ff;
  color: #0e4d65;
  box-shadow: inset 0 0 0 1px #0e4d65;
}
.fa-wallet-amount-chip--custom { grid-column: span 1; }
.fa-wallet-custom-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .2s ease, margin-top .2s ease;
  margin-top: 0;
}
.fa-wallet-custom-panel.open {
  grid-template-rows: 1fr;
  margin-top: 10px;
}
.fa-wallet-custom-panel > label { overflow: hidden; min-height: 0; }
.fa-wallet-custom-amount { margin: 0; }
.fa-wallet-custom-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #cddbe0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.fa-wallet-custom-panel.open .fa-wallet-custom-input-wrap {
  border-color: #0e4d65;
  box-shadow: 0 0 0 2px rgba(14, 77, 101, 0.1);
}
.fa-wallet-custom-input-wrap:focus-within {
  border-color: #0e4d65;
  box-shadow: 0 0 0 2px rgba(14, 77, 101, 0.12);
}
.fa-wallet-custom-prefix {
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  background: #f4f7f8;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.fa-wallet-custom-input-wrap input {
  flex: 1;
  border: none;
  padding: 12px 12px 12px 0;
  font: 600 16px Poppins, sans-serif;
  outline: none;
  min-width: 0;
}

.fa-wallet-pay-methods {
  border: none;
  margin: 0 0 12px;
  padding: 0;
}
.fa-wallet-pay-methods legend {
  font-size: 13px;
  font-weight: 600;
  color: #0e4d65;
  margin-bottom: 8px;
}
.fa-wallet-pay-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.fa-wallet-pay-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid #cddbe0;
  border-radius: 12px;
  padding: 12px 8px 10px;
  cursor: pointer;
  text-align: center;
  background: #fff;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.fa-wallet-pay-tile input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fa-wallet-pay-tile.active {
  border-color: #0e4d65;
  background: #ebf7ff;
  box-shadow: inset 0 0 0 1px #0e4d65;
}
.fa-wallet-pay-tile-text strong {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  color: #1c2120;
}
.fa-wallet-pay-tile-text em {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: #888;
  margin-top: 2px;
}
.fa-wallet-mobile-field {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .2s ease;
}
.fa-wallet-mobile-field.open { grid-template-rows: 1fr; margin-bottom: 4px; }
.fa-wallet-mobile-field > label { overflow: hidden; min-height: 0; }
.fa-wallet-phone-field { margin-bottom: 8px !important; }

.fa-wallet-pay-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid #e2eaee;
}
.fa-wallet-pay-strip span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #888;
}
.fa-wallet-pay-strip strong {
  display: block;
  font: 700 22px Poppins, sans-serif;
  color: #0e4d65;
  line-height: 1.1;
}
.fa-wallet-submit {
  flex-shrink: 0;
  min-width: 148px;
  margin: 0 !important;
}

.fa-wallet-tx-card { display: flex; flex-direction: column; min-height: 280px; }
.fa-wallet-tx-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.fa-wallet-tx-head h3 { margin: 0; }
.fa-wallet-tx-count {
  font-size: 11px;
  font-weight: 600;
  color: #0e4d65;
  background: #ebf7ff;
  padding: 3px 8px;
  border-radius: 999px;
}
.fa-wallet-tx-list {
  flex: 1;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}
.fa-wallet-tx-skeleton {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.fa-wallet-tx-skeleton li {
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(90deg, #eef3f5 25%, #f8fafb 50%, #eef3f5 75%);
  background-size: 200% 100%;
  animation: fa-wallet-shimmer 1.2s infinite;
}
@keyframes fa-wallet-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.fa-wallet-modal-amount {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8ecef;
}
.fa-wallet-modal-amount span {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fa-wallet-modal-amount strong {
  font: 700 24px Poppins, sans-serif;
  color: #0e4d65;
}
.fa-wallet-pay-badge {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font: 700 13px Poppins, sans-serif;
  color: #fff;
}
.fa-wallet-pay-badge--jazzcash { background: #c4161c; }
.fa-wallet-pay-badge--easypaisa { background: #1f9d55; }
.fa-wallet-pay-badge--card { background: #0e4d65; font-size: 18px; }
.fa-wallet-error {
  margin: 0 0 12px;
  font-size: 13px;
  color: #c4161c;
}
.fa-wallet-pay-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(14, 33, 40, 0.55);
  display: grid;
  place-items: center;
  padding: 20px;
}
.fa-wallet-pay-modal {
  position: relative;
  width: min(100%, 440px);
  max-height: min(92dvh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
.fa-wallet-pay-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #888;
  cursor: pointer;
}
.fa-wallet-pay-brand {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font: 700 16px Poppins, sans-serif;
  color: #fff;
  margin-bottom: 14px;
}
.fa-wallet-pay-brand--jazzcash { background: #c4161c; }
.fa-wallet-pay-brand--easypaisa { background: #1f9d55; }
.fa-wallet-pay-brand--card { background: #0e4d65; font-size: 24px; }
.fa-wallet-pay-modal h2 {
  margin: 0 0 8px;
  font: 600 22px Poppins, sans-serif;
  color: #0e4d65;
}
.fa-wallet-pay-lede {
  margin: 0 0 16px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.fa-wallet-demo-otp {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ebf7ff;
  font-size: 13px;
  color: #0e4d65;
}
.fa-wallet-otp-boxes { justify-content: center; margin-bottom: 16px; }
.fa-wallet-card-form .fa-account-field { margin-bottom: 12px; }
.fa-wallet-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fa-wallet-card-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 14px;
  font-size: 12px;
  color: #888;
}
.fa-wallet-card-note img {
  max-height: 22px;
  width: auto;
}
.fa-wallet-pay-success { text-align: center; padding: 12px 0 4px; }
.fa-wallet-pay-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e8f7ee;
  color: #1f9d55;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 700;
}
.fa-wallet-pay-balance {
  margin: 0 0 18px;
  font-size: 14px;
  color: #666;
}

.fa-account-form-card {
  padding: 20px;
  border: 1px solid #e2eaee;
  border-radius: 14px;
  background: #fafcfd;
}

.fa-account-form-card--wide { margin: 0 24px 28px; }

.fa-account-form-card h3 {
  margin: 0 0 6px;
  font: 600 17px Poppins, sans-serif;
  color: var(--teal);
}

.fa-account-form-lede {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.fa-account-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fa-account-field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.fa-account-field span {
  font: 600 13px Poppins, sans-serif;
  color: var(--text);
}

.fa-account-field input,
.fa-account-field select,
.fa-account-field textarea {
  width: 100%;
  border: 1px solid #d5e0e6;
  border-radius: 10px;
  padding: 11px 14px;
  font: 400 14px Poppins, sans-serif;
  color: var(--text);
  background: #fff;
  outline: none;
}

.fa-account-field textarea { resize: vertical; min-height: 96px; }

.fa-account-field input:focus,
.fa-account-field select:focus,
.fa-account-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 77, 101, .1);
}

.fa-account-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 16px;
  font-size: 14px;
  color: var(--text);
}

.fa-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 46px;
  padding: 0 22px;
  border: none;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  font: 600 14px Poppins, sans-serif;
  cursor: pointer;
}

.fa-account-btn:hover { background: #0a3d50; }

.fa-account-btn:disabled {
  opacity: .7;
  cursor: wait;
}

.fa-account-btn--light {
  background: #fff;
  color: var(--teal);
  border: 1px solid #cfe0e8;
}

.fa-account-btn--light:hover { background: #f4fafc; }

.fa-account-btn--ghost {
  background: transparent;
  color: var(--teal);
  border: 1px dashed #bfd3db;
}

.fa-account-btn--ghost:hover { background: rgba(14, 77, 101, .05); }

.fa-account-photo-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid #d9e5ea;
  background: linear-gradient(135deg, #f7fcff 0%, #fff 100%);
}

.fa-account-photo-preview {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
}

.fa-account-photo-preview .fa-account-avatar,
.fa-account-photo-img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
}

.fa-account-photo-img {
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(14, 77, 101, .12);
}

.fa-account-photo-copy strong {
  display: block;
  margin-bottom: 6px;
  font: 700 17px Poppins, sans-serif;
  color: var(--teal);
}

.fa-account-photo-copy p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.fa-account-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.fa-account-form-note {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--green);
}

.fa-account-form-note--error { color: #b42318; }

.fa-account-tx-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fa-account-tx-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e8eef1;
}

.fa-account-tx-list li:last-child { border-bottom: none; }

.fa-account-tx-list strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.fa-account-tx-list span {
  font-size: 12px;
  color: var(--muted);
}

.fa-account-tx-list em {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
}

.fa-account-tx-list em.credit { color: var(--green); }
.fa-account-tx-list em.debit { color: #d64545; }

.fa-account-empty--inline {
  margin: 0;
  padding: 20px;
  border: none;
  background: transparent;
}

.fa-account-address-list {
  display: grid;
  gap: 12px;
  padding: 0 24px 20px;
}

.fa-account-address {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #e2eaee;
  border-radius: 14px;
  background: #fff;
}

.fa-account-address.is-default {
  border-color: rgba(73, 160, 102, .35);
  background: linear-gradient(180deg, #f6fcf8 0%, #fff 100%);
}

.fa-account-address-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 600 15px Poppins, sans-serif;
  color: var(--teal);
}

.fa-account-address-label em {
  font: 600 10px Poppins, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--green);
  background: rgba(73, 160, 102, .12);
  padding: 3px 8px;
  border-radius: 999px;
}

.fa-account-address p {
  margin: 8px 0 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.fa-account-address-city {
  font-size: 12px;
  color: var(--muted);
}

.fa-account-address-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.fa-account-address-actions a,
.fa-account-address-actions button {
  border: none;
  background: none;
  font: 600 13px Poppins, sans-serif;
  color: var(--teal);
  cursor: pointer;
  padding: 0;
}

.fa-account-address-actions button.danger { color: #c0392b; }

.fa-account-address-actions form { margin: 0; }

.fa-account-empty-icon--pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e4d65'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
  background-size: 28px;
}

.fa-account-empty-icon--star {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2349a066'%3E%3Cpath d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
  background-size: 28px;
}

.fa-account-review-list {
  display: grid;
  gap: 14px;
  padding: 0 24px 28px;
}

.fa-account-review-card {
  padding: 18px 20px;
  border: 1px solid #e2eaee;
  border-radius: 14px;
  background: #fff;
}

.fa-account-review-product {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.fa-account-review-product img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #e8eef1;
}

.fa-account-review-product a {
  display: block;
  font: 600 14px Poppins, sans-serif;
  color: var(--teal);
  margin-bottom: 4px;
}

.fa-account-review-stars {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: 1px;
}

.fa-account-review-card h3 {
  margin: 0 0 8px;
  font: 600 16px Poppins, sans-serif;
  color: var(--text);
}

.fa-account-review-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a5d66;
}

.fa-account-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
  color: var(--muted);
}

.fa-account-review-delete {
  margin: 12px 0 0;
}

.fa-account-review-delete button {
  border: none;
  background: none;
  padding: 0;
  font: 500 12px Poppins, sans-serif;
  color: #c0392b;
  cursor: pointer;
}

.fa-account-reviews .fa-account-form-card--wide {
  margin-top: 0;
  margin-bottom: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .fa-cat-grid li { width: 22%; }
  .fa-card-img img { min-height: 235px; }
  .fa-prod-grid > li { width: 31.3%; margin-right: 3%; }
  .fa-prod-grid > li:nth-child(4n) { margin-right: 3%; }
  .fa-prod-grid > li:nth-child(3n) { margin-right: 0; }
  .fa-occ-grid li { width: 48%; }
  .fa-testimonial-grid li { width: 48%; }
  .fa-link-cards li { width: 100%; }
  .new-addon-list { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  .fa-auth-shell,
  .fa-account-layout { grid-template-columns: 1fr; }
  .fa-auth-visual {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px;
  }
  .fa-auth-visual h1 { font-size: 28px; max-width: none; }
  .fa-auth-art { display: none; }
  .fa-account-nav { position: static; }
  .fa-account-hero { flex-direction: column; }
  .fa-account-wallet { width: 100%; text-align: left; }
  .fa-account-stats { grid-template-columns: 1fr; }
  .fa-account-section-head,
  .fa-account-orders { padding-left: 20px; padding-right: 20px; }
  .fa-account-empty { margin-left: 20px; margin-right: 20px; }
  .fa-account-wallet-grid,
  .fa-account-form-grid { grid-template-columns: 1fr; }
  .fa-account-wallet-panel,
  .fa-account-addresses,
  .fa-account-reviews,
  .fa-account-profile-form,
  .fa-account-form-card--wide,
  .fa-account-wallet-balance,
  .fa-account-wallet-grid,
  .fa-account-address-list,
  .fa-account-review-list { padding-left: 20px; padding-right: 20px; margin-left: 0; margin-right: 0; }
  .fa-wallet-amount-chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fa-wallet-amount-toolbar { flex-direction: column; align-items: flex-start; gap: 4px; }
  .fa-wallet-amount-hint { text-align: left; }
  .fa-wallet-pay-row { grid-template-columns: 1fr; }
  .fa-wallet-pay-tile { flex-direction: row; text-align: left; padding: 12px; }
  .fa-wallet-pay-strip { flex-direction: column; align-items: stretch; }
  .fa-wallet-submit { width: 100%; min-width: 0; }
  .fa-wallet-tx-list { max-height: 280px; }
  .fa-wallet-pay-modal { padding: 22px 18px 18px; }
  .fa-account-address { flex-direction: column; }
  .fa-account-address-actions { flex-direction: row; align-items: center; }
  .fa-header-top {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto;
    gap: 8px;
    align-items: center;
  }
  .fa-logo { grid-column: 1; grid-row: 1; }
  .fa-header-mid {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
    width: auto;
    min-width: 0;
  }
  .fa-header-icons { grid-column: 3; grid-row: 1; justify-self: end; margin-left: 0; }
  .fa-city-btn { padding: 0 9px; height: 40px; font-size: 12px; gap: 4px; }
  .fa-city-prefix { display: none; }
  .fa-city-chevron { display: none; }
  .fa-city-btn .fa-city-pin { display: none; }
  .fa-city-btn .fa-city-text { display: none; }
  .fa-city-current-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    font-size: 22px;
    line-height: 1;
  }
  .fa-nav-row { justify-content: flex-start; }
  .fa-city-overlay { padding: 0; align-items: flex-end; }
  .fa-city-modal { max-width: 100%; max-height: 82vh; border-radius: 20px 20px 0 0; }
  .fa-city-modal-head { padding: 18px 18px 16px; border-radius: 20px 20px 0 0; }
  .fa-city-modal-head h2 { font-size: 17px; }
  .fa-city-modal-body { padding: 14px 16px calc(18px + env(safe-area-inset-bottom, 0px)); }
  .fa-city-list { grid-template-columns: repeat(3, 1fr); gap: 9px; }
  .fa-city-item { padding: 12px 5px 9px; border-radius: 12px; }
  .fa-city-item-pin { width: 38px; height: 38px; font-size: 20px; }
  .fa-city-item-name { font-size: 12px; }
  .fa-hero-slide img {
    min-height: 0;
    max-height: none;
    height: auto;
    object-fit: contain;
  }
  .fa-cat-grid li { width: 47%; }
  .fa-prod-grid > li { width: 47%; margin-right: 6%; }
  .fa-prod-grid > li:nth-child(3n), .fa-prod-grid > li:nth-child(4n) { margin-right: 6%; }
  .fa-prod-grid > li:nth-child(2n) { margin-right: 0; }
  .fa-card-img img { min-height: 210px; aspect-ratio: 1 / 1.05; }
  .fa-occ-grid li { width: 47%; }
  .fa-testimonial-grid li { width: 100%; }
  .fa-sec-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gp-footer-all { flex-direction: column; }
  .gp-footer-links {
    flex-direction: column;
    padding: 20px 16px;
    border-radius: 16px;
  }
  .gp-footer-links-col { margin-bottom: 8px; }
  .gp-footer-divider { display: none; }
  .gp-footer-app {
    flex: 1;
    max-width: none;
    padding: 20px 16px 28px;
    border-radius: 16px;
  }
  .gp-footer-app-title { font-size: 18px; text-align: center; }
  .gp-footer-download {
    flex-direction: column;
    align-items: center;
  }
  .gp-footer-stores { align-items: center; }
  .gp-footer-partner-inner { flex-direction: column; align-items: flex-start; }
  .gp-footer-payments { width: 100%; }
  .gp-scroll-top { right: 16px; bottom: 88px; }
  .gp-whatsapp { right: 14px; bottom: 18px; }
  .fa-link-cards { padding: 20px; }
  .fa-pdp-main { grid-template-columns: 1fr; }
  .fa-pdp-hero, .fa-pdp-thumbs, .fa-pdp-trust { max-width: 100%; }
  .fa-pdp-trust--desktop {
    display: none !important;
  }
  .fa-pdp-detail { min-height: 0; }
  .fa-pdp-sticky-wrap { margin-right: 0; }
  .fa-pdp-cart-wrap { width: 47%; }
  .fa-pdp-btn-buy { width: 47%; flex: 0 0 47%; }
  /* Add-on bottom sheet (Add More Fun To Celebration) */
  .new-addon-sheet-handle {
    display: block;
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: #c5d5dc;
    margin: 10px auto 2px;
    flex-shrink: 0;
  }

  .addon_slide_pane.slide-pane_from_bottom.bottomSlidePane {
    margin-top: 0;
    max-height: min(92dvh, 100%);
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 20px 20px 0 0;
  }

  .new-addon-container {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .new-addon-main-container {
    width: 100%;
    padding: 0 12px calc(108px + env(safe-area-inset-bottom, 0px));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .new-addon-header {
    position: sticky;
    top: 0;
    z-index: 3;
    background: #fff;
    padding-bottom: 4px;
  }

  .new-addon-header-title {
    font-size: 17px;
    line-height: 1.35;
    margin: 10px 0 8px;
    letter-spacing: 0.02em;
  }

  .new-addon-filters {
    flex-wrap: nowrap;
    gap: 4px;
    margin: 0 0 14px;
    padding: 0 0 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }

  .new-addon-filters::-webkit-scrollbar { display: none; }

  .new-addon-filter-button {
    flex: 0 0 auto;
    min-width: 68px;
    padding: 8px 10px 10px;
    gap: 6px;
    scroll-snap-align: start;
  }

  .new-addon-filter-button .filter-image {
    width: 38px;
    height: 38px;
  }

  .new-addon-filter-label {
    font-size: 10px;
    white-space: nowrap;
  }

  .new-addon-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .new-addon-card-image {
    min-height: 0;
  }

  .new-addon-card-image-img {
    height: 108px;
  }

  .new-addon-card-title {
    font-size: 11px;
    line-height: 1.35;
    min-height: 30px;
    -webkit-line-clamp: 2;
  }

  .new-addon-card-body {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .new-addon-card-price {
    font-size: 11px;
    gap: 4px;
  }

  .new-addon-card-list-price {
    font-size: 10px;
  }

  .new-addon-card-qty-container {
    justify-content: stretch;
    width: 100%;
  }

  .new-addon-card-add-btn,
  .new-addon-card-qty {
    width: 100%;
    min-height: 36px;
    font-size: 13px;
  }

  .new-addon-footer-container {
    width: 100%;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 16px 16px 0 0;
  }

  .addon-summary-footer {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
    align-items: stretch;
  }

  .addon-summary-footer.has-items {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .addon-summary-footer.has-items .all_summary.addon-items-chip {
    grid-column: 1;
    min-width: 0;
  }

  .addon-summary-footer.has-items .new-addon-continue-btn {
    grid-column: 2;
    min-height: 44px;
    padding: 10px 16px;
  }

  .new-addon-skip-btn {
    min-height: 44px;
    flex: 1;
    text-align: center;
  }

  .new-addon-continue-btn.fullWidthContinueCTA {
    min-height: 48px;
    font-size: 15px;
  }

  .all_summary.addon-items-chip {
    padding: 8px 10px;
  }

  .summary_price {
    font-size: 13px;
  }

  .summary-image-box {
    width: 28px;
    height: 28px;
  }

  .addon-footer-summary-panel {
    max-height: min(38dvh, 280px);
    padding: 12px;
  }
  .cart-left-right { flex-direction: column; }
  .summeryDetls { width: 100%; position: static; }
  .cartDetlsRep .country_name h4 { font-size: 14px; }
  .cartDetlsRep .country_name .express-type { font-size: 11px; padding: 8px 10px 8px 26px; }
  .cardItemRep .itemDetls .itemImg { width: 80px; }
  .addonCart_inner { padding: 16px 12px; }
  .addonCart_inner .addonTitle { font-size: 14px; }
  .addonCardList { flex-basis: 126px; min-height: 235px; }
  .fa-co-shell { grid-template-columns: 1fr; }
  .fa-co-steps { order: -1; }
  .fa-co-step-list {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .fa-co-step-list::-webkit-scrollbar { display: none; }
  .fa-co-step { flex: 0 0 auto; border-bottom: none; border-right: 1px solid #e6edf0; min-width: 180px; }
  .fa-co-step-link { padding: 12px; }
  .fa-co-step-text strong { font-size: 12px; }
  .fa-co-panel { padding: 20px 16px; }
  .fa-co-step-grid { grid-template-columns: 1fr; }
  .fa-co-or-divider { display: none; }
  .fa-co-side-card { margin-top: 8px; }
  .fa-co-slot-grid { grid-template-columns: 1fr; }
  .fa-co-pay-grid { grid-template-columns: 1fr; }
  .fa-co-mini-summary { position: static; order: 3; }
  .fa-co-trust { display: none; }
  .fa-co-title { font-size: 20px; }
  .fa-success-grid { grid-template-columns: 1fr; }
  .fa-success-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .fa-success-order-chip {
    justify-content: space-between;
    width: 100%;
  }
  .fa-success-progress { justify-content: flex-start; }
  .fa-success-meta div { grid-template-columns: 1fr; gap: 2px; }
  .fa-success-actions { flex-direction: column; align-items: stretch; }
  .fa-success-btn { width: 100%; }
}

/* ── MOBILE CHECKOUT / CART / SYNC UI ── */
.fa-co-mobile-bar {
  display: none;
}

.fa-co-main {
  min-height: 0;
}

@media (max-width: 768px) {
  .fa-checkout-body {
    overflow-x: hidden;
    --wrap: 100%;
  }

  .fa-checkout-body .fa-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .fa-checkout-body .fa-header {
    display: none;
  }

  .fa-checkout-body .fa-nav,
  .fa-checkout-body .fa-nav-sentinel,
  .fa-checkout-body .fa-nav-spacer,
  .fa-checkout-body .gp-announcement {
    display: none !important;
  }

  .fa-checkout-body .fa-main {
    min-height: 0;
    padding: 0;
  }

  .fa-checkout-body .gp-whatsapp,
  .fa-checkout-body .gp-scroll-top,
  .fa-checkout-body .fa-co-footer,
  .fa-checkout-body .gp-site-footer {
    display: none !important;
  }

  .fa-co-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 1100;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #dce8ec;
    box-shadow: 0 2px 12px rgba(28, 33, 32, 0.06);
  }

  .fa-co-mobile-top-back {
    font-size: 14px;
    font-weight: 600;
    color: #0e4d65;
    text-decoration: none;
    white-space: nowrap;
  }

  .fa-co-mobile-top-title {
    font-size: 15px;
    font-weight: 600;
    color: #1c2120;
  }

  .fa-co-mobile-top-step {
    font-size: 12px;
    font-weight: 700;
    color: #0e4d65;
    background: #ebf7ff;
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
  }

  .fa-co-steps--sidebar {
    display: none;
  }

  .fa-co-mobile-progress {
    display: block;
    margin: 0 0 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e6edf0;
  }

  .fa-co-mobile-progress-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .fa-co-mobile-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d7e3e8;
    flex-shrink: 0;
  }

  .fa-co-mobile-dot--active {
    width: 28px;
    border-radius: 999px;
    background: #0e4d65;
  }

  .fa-co-mobile-dot--done {
    background: #49a066;
  }

  .fa-co-mobile-progress-label {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #888;
  }

  .fa-co-mobile-progress-label strong {
    font-size: 15px;
    color: #1c2120;
  }

  .fa-co-side-card {
    display: none;
  }

  .fa-co-mobile-login-hint {
    display: block;
  }

  .fa-co-mini-summary:not(.fa-co-mini-summary--payment) {
    display: none;
  }

  .fa-co-main {
    padding: 0 0 calc(100px + env(safe-area-inset-bottom, 0px));
  }

  .fa-co-shell {
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .fa-co-shell.fa-wrap {
    width: 100%;
  }

  .fa-co-panel {
    padding: 16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
    min-height: calc(100dvh - 56px - 100px);
  }

  .fa-co-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .fa-co-lede {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .fa-co-type-hint {
    font-size: 12px;
    margin-left: 0;
    padding-left: 30px;
  }

  .fa-co-express-tag {
    margin-top: 0;
    font-size: 12px;
  }

  .fa-co-delivery-block {
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid #e6edf0;
    border-radius: 12px;
    background: #fafcfd;
  }

  .fa-co-delivery-block.is-active {
    border-color: #0e4d65;
    background: #fff;
  }

  .fa-co-delivery-block:last-of-type {
    border-bottom: 1px solid #e6edf0;
  }

  .fa-co-name-row,
  .fa-co-new-address .fa-co-field-row {
    flex-direction: column;
    align-items: stretch;
  }

  .fa-co-field--salutation {
    width: 100%;
  }

  .fa-co-field input,
  .fa-co-field select,
  .fa-co-field textarea,
  .fa-co-date-picker,
  .gp-pay-info-fields input,
  .gp-pay-info-fields .gp-adm-input {
    font-size: 16px;
    min-height: 44px;
  }

  .fa-co-field textarea {
    min-height: 96px;
  }

  .fa-co-phone input {
    min-height: 44px;
  }

  .fa-co-address-card {
    padding: 12px 14px;
  }

  .fa-co-address-card strong {
    font-size: 13px;
    word-break: break-word;
  }

  .fa-co-pay-card {
    padding: 12px 14px;
  }

  .fa-co-review-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .fa-co-review-list dt {
    font-size: 11px;
  }

  .fa-co-review-list dd {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .gp-card-pay-row {
    grid-template-columns: 1fr;
  }

  .fa-co-mini-details > summary.fa-co-mini-summary-toggle {
    display: flex;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6edf0;
  }

  .fa-co-mini-details:not([open]) .fa-co-mini-body {
    display: none;
  }

  .fa-co-mini-details .fa-co-mini-body > h2 {
    display: none;
  }

  .fa-co-mini-items {
    max-height: 160px;
  }

  .fa-co-step {
    min-width: 120px;
  }

  .fa-co-step--active .fa-co-step-link {
    border-left: none;
    border-bottom: 3px solid #0e4d65;
    padding-left: 12px;
  }

  .fa-co-step-text strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .fa-co-step-text em {
    font-size: 10px;
  }

  .fa-co-date-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .fa-co-date-tab-inner {
    min-height: 74px;
    padding: 10px 6px;
    border-radius: 10px;
  }

  .fa-co-date-tab-inner strong {
    font-size: 13px;
  }

  .fa-co-date-tab-inner em {
    font-size: 10px;
  }

  .fa-co-date-picker {
    width: 100%;
    max-width: none;
    min-height: 44px;
  }

  .fa-co-slot-grid--times {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-left: 0;
  }

  .fa-co-time-slot span {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    font-size: 12px;
  }

  .fa-co-type-head input {
    width: 20px;
    height: 20px;
  }

  .fa-co-type-title {
    font-size: 15px;
  }

  .fa-co-actions,
  .fa-co-step-footer-actions {
    display: none !important;
  }

  .fa-co-mini-summary--payment {
    display: block;
    order: 2;
    padding: 0 16px 12px;
  }

  .fa-co-mini-summary--payment .fa-co-mini-inner {
    border-radius: 12px;
  }

  .fa-co-panel {
    order: 1;
  }

  .fa-co-step-footer {
    display: none;
  }

  .fa-co-mobile-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #dce8ec;
    box-shadow: 0 -8px 24px rgba(28, 33, 32, 0.12);
  }

  .fa-co-mobile-bar-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 64px;
    flex-shrink: 0;
  }

  .fa-co-mobile-bar-info span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    font-weight: 600;
  }

  .fa-co-mobile-bar-info strong {
    font-size: 15px;
    color: #0e4d65;
    white-space: nowrap;
  }

  .fa-co-mobile-back {
    padding: 12px 14px;
    min-height: 48px;
    flex-shrink: 0;
  }

  .fa-co-mobile-continue {
    flex: 1;
    min-height: 48px;
    padding: 12px 16px;
    width: auto;
    min-width: 0;
    border-radius: 10px;
  }

  .fa-co-mobile-continue:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

  .fa-co-error {
    font-size: 13px;
    line-height: 1.45;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff5f5;
    border: 1px solid #fecaca;
  }

  .fa-cart-page.containerMyCart {
    padding: 12px 16px calc(148px + env(safe-area-inset-bottom, 0px));
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  body.fa-cart-body.fa-store-mobile-nav .fa-cart-page.containerMyCart {
    padding-bottom: calc(148px + env(safe-area-inset-bottom, 0px));
  }

  .cart-left-right {
    flex-direction: column;
    margin: 0;
    gap: 16px;
    max-width: none;
  }

  .cardDetls {
    order: 0;
    width: 100%;
  }

  .summeryDetls {
    order: 1;
    width: 100%;
    position: static;
  }

  .fa-cart-summary-inner {
    padding: 16px;
    border-radius: 12px;
  }

  .fa-cart-summary-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .fa-cart-summary-inner .fa-cart-pay-btn--sidebar,
  .fa-cart-summary-inner .fa-cart-summary-note {
    display: none;
  }

  .fa-cart-mobile-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    z-index: 1250;
    padding: 10px 16px;
    background: #fff;
    border-top: 1px solid #dce8ec;
    box-shadow: 0 -8px 24px rgba(28, 33, 32, 0.1);
  }

  .fa-cart-mobile-bar-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 88px;
    flex-shrink: 0;
  }

  .fa-cart-mobile-bar-info span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    font-weight: 600;
  }

  .fa-cart-mobile-bar-info strong {
    font-size: 16px;
    color: #0e4d65;
    white-space: nowrap;
  }

  .fa-cart-mobile-pay {
    flex: 1;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    margin: 0;
    position: static;
    font-size: 14px;
  }

  .cartDetlsRep .country_name {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: 0;
    padding: 12px 14px;
  }

  .cartDetlsRep .country_name h4 {
    font-size: 16px;
  }

  .cartDetlsRep .country_name .express-type {
    white-space: normal;
    align-self: flex-start;
  }

  .cardItemRep .itemDetls {
    gap: 12px;
    align-items: center;
  }

  .cardItemRep .itemDetls .itemImg {
    width: 88px;
  }

  .cart-prod-det .nameDetls a,
  .cart-prod-det .nameDetls {
    font-size: 14px;
  }

  .fa-cart-qty-btn {
    width: 44px;
    height: 40px;
    font-size: 20px;
  }

  .fa-cart-qty-val {
    min-width: 40px;
    line-height: 40px;
    font-size: 15px;
  }

  .fa-cart-remove {
    min-height: 36px;
    padding: 4px 0;
  }

  .fa-cart-coupon {
    flex-direction: column;
    align-items: stretch;
  }

  .fa-cart-coupon input {
    min-height: 44px;
    font-size: 16px;
  }

  .fa-cart-coupon button {
    width: 100%;
    min-height: 44px;
  }

  .deliverChargeMsg {
    font-size: 13px;
    padding: 10px 12px;
    margin-bottom: 14px;
  }

  .deliverChargeMsg.dcProductMsg {
    background-position: 12px 14px;
    padding: 12px 12px 12px 44px;
  }

  .addonCart_inner {
    padding: 16px 12px 12px;
    margin-top: 16px;
    border-radius: 12px;
  }

  .addonCart_inner .addonTitle {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .addonCart-slider.cart-addon-slider {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin: 0 -4px;
  }

  .addonCardList {
    flex: 0 0 148px;
    min-height: auto;
    scroll-snap-align: start;
  }

  .addonAddToCart {
    min-height: 40px;
  }

  .fa-cart-login-hint {
    font-size: 12px;
    line-height: 1.5;
    padding: 0 4px;
  }

  .emptyCart {
    margin: 24px auto 40px;
    padding: 0 8px;
  }

  .empty-cart-textLabel {
    font-size: 20px;
  }

  .empty_cart_Continue {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }

  .fa-cart-pay-btn {
    position: static;
  }

  .fa-success-page {
    padding: 16px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .fa-success-progress {
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .fa-success-progress-step {
    min-width: 64px;
  }

  .fa-track-hero {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 12px;
  }

  .fa-track-search {
    width: 100%;
  }

  .fa-track-search input {
    min-height: 44px;
  }

  .fa-track-search-btn {
    min-height: 44px;
  }

  .fa-track-grid {
    grid-template-columns: 1fr;
  }

  .fa-track-side {
    position: static;
  }

  .fa-track-card {
    padding: 16px;
  }

  .fa-track-card-top {
    flex-direction: column;
    gap: 10px;
  }

  .fa-track-card-top h2 {
    font-size: 20px;
  }

  .fa-track-live-map {
    height: 180px;
  }

  .fa-track-meta div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .fa-track-empty {
    margin: 24px 12px;
    padding: 24px 16px;
  }

  .fa-track-visual {
    margin-top: 20px;
    padding: 0 12px 12px;
  }

  .fa-track-visual-inner {
    grid-template-columns: 1fr;
    padding: 20px 16px 0;
    text-align: center;
  }

  .fa-track-visual-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .fa-track-visual-badges {
    justify-content: center;
  }

  .fa-track-visual-art img {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 380px) {
  .fa-co-slot-grid--times {
    grid-template-columns: 1fr;
  }

  .fa-co-date-tab-inner strong {
    font-size: 12px;
  }
}

/* CMS content pages — About Us, FAQ, etc. */
.fa-cms-page {
  padding: 32px 16px 56px;
  max-width: 820px;
}

.fa-cms-breadcrumb {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

.fa-cms-breadcrumb a {
  color: var(--teal, #0e7490);
  text-decoration: none;
}

.fa-cms-breadcrumb a:hover {
  text-decoration: underline;
}

.fa-cms-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #1e293b;
}

.fa-cms-body {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}

.fa-cms-body h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: #1e293b;
}

.fa-cms-body p {
  margin: 0 0 16px;
}

.fa-cms-body ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.fa-cms-body a {
  color: var(--teal, #0e7490);
}

.fa-cms-muted {
  color: #64748b;
}

.fa-city-filter-note {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: #64748b;
}

.fa-city-filter-note strong {
  color: #0e7490;
}

.fa-muted {
  color: #64748b;
  margin-bottom: 1rem;
}

.fa-city-unavailable {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 0.92rem;
}

.fa-pdp-btn-cart:disabled,
.fa-pdp-btn-buy:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── Home SEO / AEO sections ── */
.fa-home-intro {
  padding: 28px 0 8px;
  text-align: center;
  max-width: 820px;
}

.fa-home-eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.fa-home-intro h1 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.fa-home-lede {
  margin: 0 auto 10px;
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.fa-home-city-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.fa-home-city-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.fa-home-city-note a:hover { text-decoration: underline; }

.fa-home-seo h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 600;
}

.fa-home-fact-grid {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.fa-home-fact-grid li {
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(134, 134, 134, 0.2);
  font-size: 0.92rem;
  line-height: 1.5;
}

.fa-home-step-grid {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fa-home-step-grid li {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(134, 134, 134, 0.2);
  background: #fff;
}

.fa-home-step-num {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.fa-home-step-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.fa-home-step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.fa-home-city-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fa-home-city-grid a {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(134, 134, 134, 0.35);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.fa-home-city-grid a:hover,
.fa-home-city-grid a.active {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(14, 77, 101, 0.06);
}

.fa-home-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.fa-home-faq-item {
  border-radius: 12px;
  border: 1px solid rgba(134, 134, 134, 0.25);
  background: #fff;
  overflow: hidden;
}

.fa-home-faq-item summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 600;
  list-style: none;
}

.fa-home-faq-item summary::-webkit-details-marker { display: none; }

.fa-home-faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.fa-home-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.fa-home-link-grid a {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  background: #f7f9fa;
  border: 1px solid rgba(134, 134, 134, 0.25);
  color: var(--teal);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.fa-home-link-grid a:hover {
  background: rgba(14, 77, 101, 0.08);
}

@media (max-width: 768px) {
  .fa-home-step-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE STOREFRONT (site-wide) ── */
.fa-mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  body.fa-store-mobile-nav {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  body.fa-store-mobile-nav .fa-main {
    padding-bottom: 8px;
  }

  body.fa-store-mobile-nav .gp-site-footer {
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .fa-mobile-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    background: #fff;
    border-top: 1px solid #dce8ec;
    box-shadow: 0 -6px 20px rgba(28, 33, 32, 0.08);
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
    justify-content: space-around;
    gap: 4px;
  }

  .fa-mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 52px;
    padding: 4px 6px;
    border-radius: 10px;
    color: #64748b;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
  }

  .fa-mobile-nav-item.is-active {
    color: #0e4d65;
    background: #ebf7ff;
  }

  .fa-mobile-nav-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    line-height: 1;
  }

  .fa-mobile-nav-icon-img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    opacity: 0.55;
    transition: opacity 0.15s ease;
  }

  .fa-mobile-nav-icon-svg {
    display: block;
    color: #64748b;
    transition: color 0.15s ease;
  }

  .fa-mobile-nav-item.is-active .fa-mobile-nav-icon-img {
    opacity: 1;
  }

  .fa-mobile-nav-item.is-active .fa-mobile-nav-icon-svg {
    color: #0e4d65;
  }

  .fa-mobile-nav-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ea3761;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
  }

  /* Mobile header icons: search + track + cart only, icon-only */
  .fa-header-icons .fa-hi-label { display: none; }
  .fa-header-icons .fa-hi-wallet,
  .fa-header-icons .fa-hi-account { display: none; }

  .fa-header-icons { gap: 2px; }
  .fa-header-icons .fa-hi { padding: 7px; }
  .fa-header-icons .fa-hi img { width: 24px; height: 24px; }

  /* Mobile: search becomes a top icon + popup; hide the inline search box */
  .fa-search-icon-btn {
    display: inline-flex;
    padding: 7px;
  }
  .fa-search-icon-btn img { width: 24px; height: 24px; }

  .fa-header-mid .fa-search-wrap {
    display: none;
  }

  .fa-header-mid {
    justify-content: flex-start;
  }

  .fa-header-top {
    padding: 10px 0;
  }

  .fa-logo-text {
    font-size: 20px;
  }

  .fa-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: #fff;
    border-bottom: 1px solid #e6edf0;
  }

  .fa-nav-row {
    padding: 0 12px;
    gap: 4px;
  }

  .fa-nav-top-link {
    padding: 8px 14px;
    line-height: 1.5;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .fa-wrap {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .fa-prod-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .fa-prod-grid > li {
    width: auto !important;
    margin: 0 !important;
  }

  .fa-cat-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 8px;
  }

  .fa-cat-grid li {
    width: auto !important;
    margin-bottom: 0 !important;
  }

  .fa-cat-grid span {
    margin-top: 6px;
    font-size: 12.5px;
  }

  .fa-sec-head {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fa-pdp-main {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.fa-pdp-body .fa-pdp {
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }

  body.fa-pdp-body.fa-store-mobile-nav .fa-pdp {
    padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
  }

  body.fa-pdp-body.fa-store-mobile-nav .fa-pdp-reviews-wrap {
    padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
  }

  .fa-pdp-sticky-wrap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    z-index: 1250;
    margin: 0;
    padding: 10px 16px;
    background: #fff;
    border-top: 1px solid #dce8ec;
    box-shadow: 0 -8px 24px rgba(28, 33, 32, 0.1);
    box-sizing: border-box;
  }

  .fa-pdp-cart-wrap {
    width: 47%;
    flex-shrink: 0;
  }

  .fa-pdp-btn-cart,
  .fa-pdp-btn-buy {
    min-height: 48px;
    height: 48px;
    font-size: 13px;
  }

  .fa-pdp-btn-buy {
    width: auto;
    flex: 1;
    white-space: nowrap;
  }

  .fa-pdp-buy-wrap .fa-btn-primary,
  .fa-pdp-buy-wrap .fa-btn-outline,
  .fa-pdp-buy-wrap button {
    width: 100%;
    min-height: 48px;
  }

  .gp-whatsapp {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    right: 12px;
  }

  .gp-scroll-top {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 480px) {
  .fa-city-btn .fa-city-text {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .fa-search input {
    font-size: 16px;
  }
}

/* Product page loading skeleton */
@keyframes fa-skel-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.fa-pdp-skeleton .fa-pdp-skel-crumb,
.fa-pdp-skeleton .fa-pdp-skel-gallery,
.fa-pdp-skeleton .fa-pdp-skel-title,
.fa-pdp-skeleton .fa-pdp-skel-line,
.fa-pdp-skeleton .fa-pdp-skel-price,
.fa-pdp-skeleton .fa-pdp-skel-btn {
  background: linear-gradient(90deg, #ece8e4 0%, #f5f2ef 50%, #ece8e4 100%);
  background-size: 200% 100%;
  animation: fa-skel-pulse 1.2s ease-in-out infinite;
  border-radius: 8px;
}
.fa-pdp-skel-crumb { height: 14px; width: 220px; margin-bottom: 16px; }
.fa-pdp-skel-gallery { aspect-ratio: 1; max-width: 502px; border-radius: 12px; }
.fa-pdp-skel-title { height: 28px; width: 85%; margin-bottom: 12px; }
.fa-pdp-skel-line { height: 14px; width: 100%; margin-bottom: 10px; }
.fa-pdp-skel-line.short { width: 45%; }
.fa-pdp-skel-price { height: 32px; width: 140px; margin: 16px 0; }
.fa-pdp-skel-btn { height: 48px; width: 100%; max-width: 320px; margin-top: 20px; }
.fa-pdp-skeleton .fa-pdp-main {
  display: grid;
  grid-template-columns: minmax(0, 502px) minmax(0, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .fa-pdp-skeleton .fa-pdp-main { grid-template-columns: 1fr; }
}

/* HTML sitemap page */
.fa-sitemap-page {
  padding: 32px 16px 56px;
  max-width: 1100px;
}

.fa-sitemap-head h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1e293b;
}

.fa-sitemap-intro {
  color: #64748b;
  margin: 0 0 28px;
  line-height: 1.6;
}

.fa-sitemap-intro a {
  color: var(--teal, #0e7490);
  text-decoration: none;
}

.fa-sitemap-intro a:hover {
  text-decoration: underline;
}

.fa-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px 32px;
}

.fa-sitemap-group h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #334155;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
}

.fa-sitemap-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fa-sitemap-group li {
  margin: 0 0 8px;
}

.fa-sitemap-group a {
  color: var(--teal, #0e7490);
  text-decoration: none;
  font-size: 15px;
}

.fa-sitemap-group a:hover {
  text-decoration: underline;
}

.gp-adm-sitemap-breakdown,
.gp-adm-sitemap-samples {
  margin: 8px 0 0;
  padding-left: 18px;
}

.gp-adm-sitemap-links {
  margin-top: 16px;
}

.gp-adm-sitemap-samples a {
  word-break: break-all;
}

/* ── Public seller shop ──────────────────────────────────────────────────── */
.fa-shop-hero {
  position: relative;
  padding: 28px 0 36px;
  background:
    radial-gradient(900px 420px at 8% -20%, rgba(196, 83, 106, 0.12), transparent 55%),
    radial-gradient(700px 380px at 100% 0%, rgba(14, 77, 101, 0.12), transparent 50%),
    linear-gradient(180deg, #f3f7f6 0%, #fff 100%);
  border-bottom: 1px solid rgba(14, 77, 101, 0.08);
  overflow: hidden;
}
.fa-shop-hero-inner { position: relative; z-index: 1; }
.fa-shop-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-size: 13px;
  color: #6b7280;
}
.fa-shop-crumb a {
  color: #0e4d65;
  text-decoration: none;
  font-weight: 500;
}
.fa-shop-crumb a:hover { text-decoration: underline; }
.fa-shop-identity {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.fa-shop-logo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(14, 77, 101, 0.14);
  background: #fff;
}
.fa-shop-logo--fallback {
  display: grid;
  place-items: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #c4536a, #0e4d65);
  letter-spacing: 0.02em;
}
.fa-shop-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f6b5c;
}
.fa-shop-brand {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0e4d65;
}
.fa-shop-meta {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6b7280;
}
.fa-shop-meta strong { color: #0f172a; font-weight: 600; }
.fa-shop-dot { opacity: 0.45; }
.fa-shop-bio {
  margin: 18px 0 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.55;
  color: #334155;
}
.fa-shop-bio--soft { color: #64748b; }
.fa-shop-collection { padding-top: 28px; }
.fa-shop-collection-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 18px;
}
.fa-shop-collection-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
}
@media (max-width: 640px) {
  .fa-shop-hero { padding: 20px 0 28px; }
  .fa-shop-logo { width: 72px; height: 72px; border-radius: 18px; }
  .fa-shop-identity { gap: 14px; }
}

/* ── Become a seller (/sell) ─────────────────────────────────────────────── */
.fa-sell { padding-bottom: 64px; }
.fa-sell-hero {
  padding: 40px 0 48px;
  background:
    radial-gradient(900px 420px at 0% -10%, rgba(196, 83, 106, 0.1), transparent 55%),
    radial-gradient(800px 400px at 100% 0%, rgba(14, 77, 101, 0.12), transparent 50%),
    linear-gradient(180deg, #f2f6f5 0%, #fff 72%);
  border-bottom: 1px solid rgba(14, 77, 101, 0.08);
}
.fa-sell-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px 48px;
  align-items: start;
}
.fa-sell-kicker {
  margin: 0 0 10px;
  font: 600 12px/1 Poppins, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f6b5c;
}
.fa-sell-hero-copy h1 {
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0e4d65;
}
.fa-sell-lede {
  margin: 0 0 22px;
  max-width: 40ch;
  font-size: 16px;
  line-height: 1.55;
  color: #64748b;
}
.fa-sell-perk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.fa-sell-perk-list li {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(14, 77, 101, 0.08);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.fa-sell-perk-list strong {
  font: 600 14px Poppins, sans-serif;
  color: #0f172a;
}
.fa-sell-perk-list span {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}
.fa-sell-login-hint {
  margin: 22px 0 0;
  font-size: 14px;
  color: #64748b;
}
.fa-sell-login-hint a {
  color: #0e4d65;
  font-weight: 600;
  text-decoration: none;
}
.fa-sell-login-hint a:hover { text-decoration: underline; }

.fa-sell-form-card {
  background: #fff;
  border: 1px solid rgba(14, 77, 101, 0.1);
  border-radius: 22px;
  padding: 28px 26px 26px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.fa-sell-form-head h2 {
  margin: 0 0 6px;
  font: 600 22px/1.2 Poppins, sans-serif;
  color: #0f172a;
}
.fa-sell-form-head p {
  margin: 0 0 20px;
  font-size: 14px;
  color: #64748b;
}
.fa-sell-form {
  display: grid;
  gap: 14px;
}
.fa-sell-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fa-sell-field {
  display: grid;
  gap: 7px;
  margin: 0;
}
.fa-sell-field > span {
  font: 600 12px/1.2 Poppins, sans-serif;
  color: #475569;
}
.fa-sell-field > span em {
  font-style: normal;
  font-weight: 500;
  color: #94a3b8;
}
.fa-sell-field input,
.fa-sell-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d5e0e6;
  border-radius: 12px;
  padding: 12px 14px;
  font: 400 15px/1.4 Poppins, sans-serif;
  color: #0f172a;
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.fa-sell-field input { height: 48px; padding-top: 0; padding-bottom: 0; }
.fa-sell-field textarea { resize: vertical; min-height: 88px; }
.fa-sell-field input:focus,
.fa-sell-field textarea:focus {
  border-color: #0e4d65;
  box-shadow: 0 0 0 4px rgba(14, 77, 101, 0.1);
}
.fa-sell-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff5f5;
  border: 1px solid #ffcdd2;
  color: #c62828;
  font-size: 13px;
}
.fa-sell-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  font: 600 14px Poppins, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s, background .15s;
}
.fa-sell-btn:hover { transform: translateY(-1px); }
.fa-sell-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.fa-sell-btn--primary {
  background: linear-gradient(180deg, #0e5a74 0%, #0e4d65 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 77, 101, 0.22);
}
.fa-sell-btn--ghost {
  background: #f1f5f4;
  color: #0e4d65;
}
.fa-sell-btn--block { width: 100%; }

.fa-sell-success { text-align: center; padding: 12px 4px 4px; }
.fa-sell-success-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e3f2ee;
  color: #1f6b5c;
  font-size: 22px;
  font-weight: 700;
}
.fa-sell-success h2 {
  margin: 0 0 8px;
  font: 600 22px Poppins, sans-serif;
  color: #0f172a;
}
.fa-sell-success p {
  margin: 0 0 20px;
  color: #64748b;
  line-height: 1.5;
}
.fa-sell-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.fa-sell-steps,
.fa-sell-compare {
  padding-top: 48px;
}
.fa-sell-section-title {
  margin: 0 0 20px;
  font: 600 22px/1.2 Poppins, sans-serif;
  color: #0f172a;
}
.fa-sell-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.fa-sell-step {
  padding: 22px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(14, 77, 101, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.fa-sell-step-n {
  display: inline-block;
  margin-bottom: 12px;
  font: 700 13px/1 Poppins, sans-serif;
  letter-spacing: 0.08em;
  color: #1f6b5c;
}
.fa-sell-step h3 {
  margin: 0 0 8px;
  font: 600 17px Poppins, sans-serif;
  color: #0f172a;
}
.fa-sell-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
}

.fa-sell-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(14, 77, 101, 0.1);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.fa-sell-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 15px;
}
.fa-sell-table th,
.fa-sell-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #eef2f0;
  vertical-align: middle;
}
.fa-sell-table th {
  background: #f4f8f7;
  font: 600 12px/1 Poppins, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.fa-sell-table tbody tr:last-child td { border-bottom: 0; }
.fa-sell-table tbody tr:hover td { background: rgba(14, 77, 101, 0.025); }
.fa-sell-table td:first-child {
  font-weight: 600;
  color: #0f172a;
  width: 38%;
}
.fa-sell-yes {
  display: inline-block;
  margin-right: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e3f2ee;
  color: #1f6b5c;
  font: 600 11px/1 Poppins, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fa-sell-no {
  display: inline-block;
  margin-right: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font: 600 11px/1 Poppins, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .fa-sell-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .fa-sell-step-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .fa-sell-row { grid-template-columns: 1fr; }
  .fa-sell-form-card { padding: 22px 18px; border-radius: 18px; }
  .fa-sell-hero { padding: 28px 0 36px; }
}
