/* ==========================================================================
   COMPONENTS — Delicio 2026 (Choco-style redesign)
   Clean, white, minimal
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. Header
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 430px;
  margin: 0 auto;
  transition: background 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

.header--home {
  height: auto;
  display: flex;
  flex-direction: column;
}

.header__nav-row {
  display: flex;
  align-items: center;
  padding: 8px var(--page-px);
  min-height: var(--header-h);
  flex-shrink: 0;
  transition: min-height 0.3s ease, padding 0.3s ease;
}

.header--home.scrolled .header__nav-row {
  min-height: 44px;
  padding: 4px var(--page-px);
}

.header--sub {
  display: flex;
  align-items: center;
  padding: 0 var(--page-px);
  gap: var(--space-2);
}

.header__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text);
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--ease-fast), transform var(--ease-fast);
}

.header__btn:active {
  background: var(--color-surface-alt);
  transform: scale(0.92);
}

.header__logo-img {
  flex: 1;
  height: 70px;
  max-width: 200px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  transition: height 300ms ease, opacity 300ms ease;
}

.header--home.scrolled .header__logo-img {
  height: 0;
  width: 0;
  flex: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.header__logo-text-scroll {
  display: none;
  flex: 1;
  min-width: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header--home.scrolled .header__logo-text-scroll {
  display: block;
}

.header__logo-text {
  flex: 1;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  letter-spacing: -0.5px;
}

.header__title {
  font-size: var(--font-md);
  font-weight: var(--weight-bold);
  flex: 1;
  text-align: center;
}

.header__spacer {
  width: 40px;
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   2. Toolbar (search + category tabs) — Choco-style
   -------------------------------------------------------------------------- */

.toolbar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--page-px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 40;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: top 0.3s ease;
}

body.scrolled .toolbar {
  top: 44px;
}

.toolbar__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border-dark);
  background: var(--color-bg);
  color: var(--color-text);
  flex-shrink: 0;
  cursor: pointer;
}

.toolbar__tabs {
  flex: 1;
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.toolbar__tabs::-webkit-scrollbar {
  display: none;
}

.toolbar__tab {
  flex-shrink: 0;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid var(--color-border-dark);
  background: var(--color-bg);
  color: var(--color-text);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
  position: relative;
  z-index: 1;
  letter-spacing: 0.1px;
}

.toolbar__tab--active {
  background: transparent;
  color: #FFFFFF;
  border-color: transparent;
}


/* --------------------------------------------------------------------------
   3. Bottom Navigation — Premium Style
   -------------------------------------------------------------------------- */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  max-width: 430px;
  margin: 0 auto;
  padding-bottom: var(--safe-bottom);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.bottom-nav__inner {
  display: flex;
  height: var(--nav-h);
}

.bottom-nav__inner > * {
  flex: 1;
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--color-text-tertiary);
  transition: color 200ms ease, transform 200ms ease;
  position: relative;
}

.bottom-nav__item--active {
  color: var(--color-primary);
}

.bottom-nav__item--active::before {
  content: '';
  position: absolute;
  top: 4px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-primary-light);
  z-index: -1;
}

.bottom-nav__item:active {
  transform: scale(0.9);
}

.bottom-nav__icon {
  position: relative;
  width: 24px;
  height: 24px;
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bottom-nav__item--active .bottom-nav__icon {
  transform: scale(1.1);
}

.bottom-nav__badge {
  position: absolute;
  top: -5px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: var(--weight-bold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 4px;
  border: 2px solid var(--color-bg);
  box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
}

.bottom-nav__label {
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.3px;
}

.bottom-nav__version {
  font-size: 9px;
  text-align: center;
  color: var(--color-text-tertiary);
  opacity: 0.4;
  padding: 2px 0 4px;
  pointer-events: none;
}


/* --------------------------------------------------------------------------
   4. Product Card — Choco-style (2-col grid)
   -------------------------------------------------------------------------- */

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:active {
  transform: scale(0.98);
}

@media (hover: hover) {
  .product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
}

.product-card__img-wrap {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface-alt);
  position: relative;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .product-card:hover .product-card__img-wrap img {
    transform: scale(1.05);
  }
}

.no-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  height: 100%;
  background: var(--color-surface-alt);
  color: var(--color-text-tertiary);
  font-size: 13px;
}

.no-image-placeholder svg {
  opacity: 0.4;
}

.product-card__body {
  padding: var(--space-3);
}

.product-card__name {
  font-size: var(--font-sm);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  min-height: 36px;
  text-decoration: none;
  letter-spacing: -0.1px;
}

.product-card__desc {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  letter-spacing: 0.1px;
}

.product-card__footer {
  margin-top: var(--space-2);
}

/* Choco-style price pill: [ цена    + ] */
.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-surface-alt);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 14px;
  border: 1px solid var(--color-border);
}

.product-card__price {
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

.product-card__add {
  width: 28px;
  height: 28px;
  background: transparent;
  color: var(--color-text);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform var(--ease-fast);
}

.product-card__add:active {
  transform: scale(0.85);
}

/* Quantity controls in card */
.product-card__qty {
  display: flex;
  align-items: center;
  gap: 2px;
}


/* --------------------------------------------------------------------------
   5. Quantity Control
   -------------------------------------------------------------------------- */

.qty-control {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border-dark);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.qty-btn:active {
  background: var(--color-surface-alt);
  transform: scale(0.88);
}

.qty-val {
  min-width: 20px;
  text-align: center;
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
}


/* --------------------------------------------------------------------------
   6. Product Grid
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}


/* --------------------------------------------------------------------------
   7. Sticky Cart Bar
   -------------------------------------------------------------------------- */

.sticky-cart {
  position: fixed;
  bottom: var(--nav-h);
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 12px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  z-index: 40;
  transition: opacity 200ms ease;
  box-sizing: border-box;
  min-height: 44px;
}

.sticky-cart:active {
  opacity: 0.9;
}

.sticky-cart__icon {
  width: 16px;
  height: 16px;
  opacity: 0.85;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.sticky-cart__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.3;
}

.sticky-cart__arrow {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   8. Toast Notifications
   -------------------------------------------------------------------------- */

#toast-container {
  position: fixed;
  bottom: calc(var(--nav-h) + var(--safe-bottom) + 80px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  pointer-events: none;
}

.toast {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  color: var(--color-text);
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.03);
  pointer-events: auto;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.1px;
}

.toast__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   9. Section Title
   -------------------------------------------------------------------------- */

.section-title {
  font-size: var(--font-lg);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.3px;
}


/* --------------------------------------------------------------------------
   10. Empty State
   -------------------------------------------------------------------------- */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.empty-state__icon {
  width: 80px;
  height: 80px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
}

.empty-state__icon svg { width: 36px; height: 36px; }

.empty-state__title {
  font-size: var(--font-lg);
  font-weight: 800;
  margin-bottom: var(--space-2);
  letter-spacing: -0.3px;
}

.empty-state__text {
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  max-width: 260px;
}

.empty-state__btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #fff;
  font-size: var(--font-base);
  font-weight: var(--weight-bold);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.25);
  letter-spacing: 0.2px;
}

.empty-state__btn:active {
  transform: scale(0.95);
  background: var(--color-primary-hover);
}


/* --------------------------------------------------------------------------
   11. Buttons
   -------------------------------------------------------------------------- */

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  padding: 14px 0;
  font-size: var(--font-base);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform var(--ease-fast);
}

.btn-primary:active { transform: scale(0.98); background: var(--color-primary-hover); }


/* --------------------------------------------------------------------------
   12. Cart
   -------------------------------------------------------------------------- */

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.cart-header__clear {
  font-size: var(--font-sm);
  color: var(--color-error);
  font-weight: var(--weight-medium);
  background: none;
  border: none;
  cursor: pointer;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cart-item {
  display: flex;
  gap: var(--space-3);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  position: relative;
}

.cart-item__img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
}

.cart-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
}

.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: var(--font-sm); font-weight: var(--weight-bold); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: -0.1px; }
.cart-item__weight { font-size: var(--font-xs); color: var(--color-text-secondary); }

.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2);
}

.cart-item__price { font-size: var(--font-base); font-weight: 800; letter-spacing: -0.2px; }

.cart-item__remove {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 28px;
  height: 28px;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms ease, transform 150ms ease;
}

.cart-item__remove:active {
  color: var(--color-error);
  transform: scale(0.85);
}

/* Delivery tabs */
.delivery-tabs {
  display: flex;
  background: var(--color-surface-alt);
  border-radius: var(--radius-full);
  padding: 3px;
  margin: var(--space-5) 0;
}

.delivery-tab {
  flex: 1;
  padding: var(--space-2) 0;
  text-align: center;
  font-size: var(--font-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 350ms cubic-bezier(0.34, 1.56, 0.64, 1),
              background 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.delivery-tab--active {
  background: var(--color-primary);
  color: #fff;
}

/* Cart summary */
.cart-summary {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  margin-top: var(--space-4);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: var(--font-sm);
}

.cart-summary__row--total {
  font-size: var(--font-md);
  font-weight: 800;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3);
  margin-top: var(--space-1);
  letter-spacing: -0.2px;
}

.cart-summary__divider { height: 1px; background: var(--color-divider); margin: var(--space-2) 0; }
.cart-summary__bonus { font-size: var(--font-sm); color: var(--color-primary); margin-top: var(--space-2); }

.cart-order-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #fff;
  width: 100%;
  padding: 16px 0;
  font-size: var(--font-base);
  font-weight: var(--weight-bold);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  margin-top: var(--space-4);
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.3);
  letter-spacing: 0.2px;
}

.cart-order-btn:active {
  transform: scale(0.96);
  background: var(--color-primary-hover);
}


/* --------------------------------------------------------------------------
   13. Checkout
   -------------------------------------------------------------------------- */

.checkout-section { margin-bottom: var(--space-5); }
.checkout-section__label { font-weight: var(--weight-semibold); font-size: var(--font-base); margin-bottom: var(--space-2); }

.checkout-input-wrap { position: relative; }
.checkout-input-wrap svg { position: absolute; left: var(--space-3); top: 50%; transform: translateY(-50%); color: var(--color-text-tertiary); width: 20px; height: 20px; pointer-events: none; }

.checkout-input {
  width: 100%;
  border: 1.5px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-3) var(--space-3) 42px;
  font-size: var(--font-base);
  background: var(--color-surface);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
  box-sizing: border-box;
}

.checkout-input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
  background: rgba(249, 115, 22, 0.02);
}

.checkout-input--invalid {
  border-color: var(--color-error, #ef4444) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
  background: rgba(239, 68, 68, 0.02) !important;
}

.checkout-input--valid {
  border-color: var(--color-success, #22c55e) !important;
}

.checkout-error-text {
  font-size: var(--font-xs);
  color: var(--color-error, #ef4444);
  margin-top: 4px;
  display: none;
}

.checkout-error-text--visible {
  display: block;
}

.checkout-confirm-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.checkout-input--textarea { resize: none; min-height: 80px; padding: var(--space-3); }
.checkout-locate { font-size: var(--font-sm); color: var(--color-primary); font-weight: var(--weight-medium); margin-top: 6px; cursor: pointer; background: none; border: none; padding: 0; }

/* Radio options */
.checkout-radios { display: flex; flex-direction: column; gap: var(--space-2); }

.checkout-radio {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 1.5px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 14px;
  cursor: pointer;
  transition: border-color 250ms ease, background 250ms ease, box-shadow 250ms ease, transform 150ms ease;
}

.checkout-radio:active { transform: scale(0.98); }

.checkout-radio--active {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}
.checkout-radio__icon { width: 20px; height: 20px; color: var(--color-text-secondary); flex-shrink: 0; }
.checkout-radio--active .checkout-radio__icon { color: var(--color-primary); }
.checkout-radio__text { flex: 1; }
.checkout-radio__title { font-size: var(--font-sm); font-weight: var(--weight-semibold); }
.checkout-radio__subtitle { font-size: var(--font-xs); color: var(--color-text-secondary); }

.checkout-confirm-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #fff;
  width: 100%;
  padding: 16px 0;
  font-size: var(--font-base);
  font-weight: var(--weight-bold);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.3);
  letter-spacing: 0.2px;
}

.checkout-confirm-btn:active {
  transform: scale(0.96);
  background: var(--color-primary-hover);
}

/* Success overlay */
.checkout-success {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  text-align: center;
  padding: 40px;
}

.checkout-success__icon { margin-bottom: var(--space-2); }
.checkout-success__title { font-size: var(--font-xl); font-weight: var(--weight-bold); }
.checkout-success__text { font-size: var(--font-sm); color: var(--color-text-secondary); max-width: 280px; }

.checkout-success__btn {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 40px;
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  font-weight: var(--weight-semibold);
  margin-top: var(--space-4);
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}


/* --------------------------------------------------------------------------
   14. Product Card — No image variant
   -------------------------------------------------------------------------- */

.product-card--no-image .product-card__img-wrap {
  aspect-ratio: 1 / 1;
}

.product-card--no-image .product-card__body {
  padding: var(--space-3);
}


/* --------------------------------------------------------------------------
   15. Side Drawer
   -------------------------------------------------------------------------- */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 100;
  transition: background 300ms ease;
  max-width: 430px;
  margin: 0 auto;
}

.drawer-overlay--visible {
  background: rgba(0,0,0,0.5);
}

.drawer-overlay--visible .drawer {
  transform: translateX(0);
}

.drawer-overlay--closing .drawer {
  transform: translateX(-100%);
}

.drawer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 80%;
  background: var(--color-bg);
  transform: translateX(-100%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.drawer__logo {
  font-size: var(--font-xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}

.drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
}

.drawer__close:active {
  background: var(--color-surface-alt);
}

.drawer__info {
  padding: var(--space-4);
}

.drawer__info-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 6px 0;
  font-size: var(--font-sm);
  color: var(--color-text-secondary);
}

.drawer__info-row svg {
  color: var(--color-text-tertiary);
  flex-shrink: 0;
}

.drawer__divider {
  height: 1px;
  background: var(--color-border);
  margin: 0 var(--space-4);
}

.drawer__nav {
  padding: var(--space-4);
}

.drawer__nav-title {
  font-size: var(--font-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-3);
}

.drawer__nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--font-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  transition: background var(--ease-fast);
}

.drawer__nav-item:active {
  background: var(--color-surface-alt);
}

.drawer__nav-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.drawer__nav-count {
  margin-left: auto;
  font-size: var(--font-xs);
  color: var(--color-text-tertiary);
  background: var(--color-surface-alt);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.drawer__links {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.drawer__link {
  display: block;
  padding: 10px var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--font-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  transition: background var(--ease-fast);
}

.drawer__link:active {
  background: var(--color-surface-alt);
}



/* --------------------------------------------------------------------------
   16. Promo Banner (premium image slider)
   -------------------------------------------------------------------------- */

.promo-banner {
  padding: 0;
  margin-bottom: var(--space-3);
}

.promo-banner__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: var(--radius-xl);
}

.promo-banner__track::-webkit-scrollbar {
  display: none;
}

.promo-banner__slide {
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  height: var(--banner-h);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.promo-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.promo-banner__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.4px;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.promo-banner__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: var(--space-5) var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promo-banner__title {
  font-size: var(--font-2xl);
  font-weight: var(--weight-bold);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.promo-banner__subtitle {
  font-size: var(--font-base);
  opacity: 0.88;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  font-weight: var(--weight-medium);
}

.promo-banner__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  margin-top: var(--space-2);
  background: #fff;
  color: var(--color-text);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  font-weight: var(--weight-bold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
}

.promo-banner__cta svg {
  width: 14px;
  height: 14px;
  transition: transform 200ms ease;
}

.promo-banner__cta:active {
  transform: scale(0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.promo-banner__shimmer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 60%
  );
  background-size: 300% 100%;
  animation: bannerShimmer 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
  will-change: background-position;
}

.promo-banner__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: var(--space-3);
}

.promo-banner__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-border-dark);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-banner__dot--active {
  background: var(--color-primary);
  width: 24px;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.45);
}



/* --------------------------------------------------------------------------
   17. Bottom Sheet (modal)
   -------------------------------------------------------------------------- */

.bottom-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: background 300ms ease;
  max-width: 430px;
  margin: 0 auto;
}

.bottom-sheet-overlay--visible {
  background: rgba(0,0,0,0.5);
}

.bottom-sheet-overlay--visible .bottom-sheet {
  transform: translateY(0);
}

.bottom-sheet {
  width: 100%;
  max-height: 85vh;
  background: var(--color-bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding-bottom: var(--safe-bottom);
}

.bottom-sheet__handle {
  width: 36px;
  height: 4px;
  background: var(--color-border-dark);
  border-radius: var(--radius-full);
  margin: var(--space-3) auto 0;
}

.bottom-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--page-px);
}

.bottom-sheet__title {
  font-size: var(--font-md);
  font-weight: var(--weight-bold);
}

.bottom-sheet__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
}

.bottom-sheet__body {
  padding: 0 var(--page-px) var(--space-6);
}

/* Address items */
.address-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.address-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1.5px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--ease-fast);
}

.address-item--active {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.address-item__icon {
  width: 40px;
  height: 40px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  flex-shrink: 0;
}

.address-item--active .address-item__icon {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.address-item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.address-item__label {
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
}

.address-item__value {
  font-size: var(--font-xs);
  color: var(--color-text-secondary);
}

.address-item__check {
  flex-shrink: 0;
}

.address-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4);
  border: 1.5px dashed var(--color-border-dark);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  background: none;
  width: 100%;
  transition: background var(--ease-fast);
}

.address-add:active {
  background: var(--color-primary-light);
}

/* Notification toggles */
.notif-list {
  display: flex;
  flex-direction: column;
}

.notif-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
}

.notif-item:last-child {
  border-bottom: none;
}

.notif-item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif-item__title {
  font-size: var(--font-sm);
  font-weight: var(--weight-semibold);
}

.notif-item__desc {
  font-size: var(--font-xs);
  color: var(--color-text-secondary);
}

.notif-toggle {
  display: none;
}

.notif-toggle-track {
  width: 44px;
  height: 24px;
  background: var(--color-border-dark);
  border-radius: var(--radius-full);
  position: relative;
  flex-shrink: 0;
  transition: background var(--ease-fast);
}

.notif-toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform var(--ease-fast);
}

.notif-toggle:checked + .notif-toggle-track {
  background: var(--color-primary);
}

.notif-toggle:checked + .notif-toggle-track::after {
  transform: translateX(20px);
}

/* About content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.about-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-4) 0;
}

.about-desc {
  font-size: var(--font-sm);
  line-height: 1.5;
  color: var(--color-text);
}

.about-links {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  font-size: var(--font-sm);
  font-weight: var(--weight-medium);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  cursor: pointer;
}

.about-link-item:last-child {
  border-bottom: none;
}

.about-link-item svg {
  color: var(--color-text-tertiary);
}


/* --------------------------------------------------------------------------
   18. Skeleton Loading
   -------------------------------------------------------------------------- */

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  height: 200px;
  margin-bottom: 12px;
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
  width: 60%;
}

.skeleton-text--short {
  width: 40%;
}

.skeleton-text--full {
  width: 100%;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  padding: var(--space-4) var(--page-px);
}

.skeleton-product {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.skeleton-product__img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

.skeleton-product__body {
  padding: var(--space-3);
}

.skeleton-product__line {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  margin-bottom: 8px;
}

.skeleton-product__line:last-child {
  width: 50%;
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   Review Modal
   -------------------------------------------------------------------------- */
.review-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: flex-end; justify-content: center;
}
.review-modal {
  background: var(--color-bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  max-width: 430px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  padding: var(--space-5) var(--page-px) var(--space-8);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-modal__title {
  font-size: var(--font-lg); font-weight: var(--weight-bold);
  margin-bottom: var(--space-1);
}
.review-modal__subtitle {
  font-size: var(--font-xs); color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}
.review-item {
  display: flex; gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}
.review-item:last-of-type { border-bottom: none; }
.review-item__img {
  width: 56px; height: 56px;
  border-radius: var(--radius-md); object-fit: cover; flex-shrink: 0;
}
.review-item__info { flex: 1; min-width: 0; }
.review-item__name {
  font-weight: var(--weight-semibold); font-size: var(--font-sm);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.review-stars { display: flex; gap: 4px; margin: var(--space-2) 0; }
.review-star {
  width: 32px; height: 32px; border: none; background: none;
  cursor: pointer; color: var(--color-border);
  transition: color 0.15s, transform 0.15s; padding: 0;
}
.review-star--active { color: var(--color-warning, #f59e0b); }
.review-star:active { transform: scale(1.2); }
.review-comment {
  width: 100%; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: var(--space-2);
  font-size: var(--font-xs); resize: none; font-family: inherit;
  background: var(--color-bg);
}
.review-comment:focus { outline: none; border-color: var(--color-primary); }
.review-submit { width: 100%; margin-top: var(--space-4); }
.review-skip {
  width: 100%; margin-top: var(--space-2);
  background: none; border: none; color: var(--color-text-secondary);
  font-size: var(--font-sm); cursor: pointer; padding: var(--space-2);
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   Upsell Bottom Sheet
   -------------------------------------------------------------------------- */
.upsell-backdrop {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.3);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.upsell-backdrop--visible { opacity: 1; pointer-events: auto; }
.upsell-sheet {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 151;
  background: var(--color-bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  max-width: 430px; margin: 0 auto;
  padding: var(--space-4) var(--page-px) var(--space-6);
  transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
}
.upsell-sheet--visible { transform: translateY(0); }
.upsell-sheet__handle {
  width: 40px; height: 4px;
  background: var(--color-border); border-radius: 2px;
  margin: 0 auto var(--space-3);
}
.upsell-sheet__title {
  font-size: var(--font-md); font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}
.upsell-sheet__scroll {
  display: flex; gap: var(--space-3);
  overflow-x: auto; padding-bottom: var(--space-2);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.upsell-sheet__scroll::-webkit-scrollbar { display: none; }
.upsell-card {
  min-width: 140px; max-width: 160px; flex-shrink: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--color-border); background: var(--color-bg);
}
.upsell-card__img {
  width: 100%; height: 100px; object-fit: cover;
}
.upsell-card__body { padding: var(--space-2); }
.upsell-card__name {
  font-size: var(--font-xs); font-weight: var(--weight-medium);
  line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.upsell-card__price {
  font-size: var(--font-sm); font-weight: var(--weight-bold);
  color: var(--color-primary); margin-top: 4px;
}
.upsell-card__add {
  width: 100%; padding: 8px; border: none;
  background: var(--color-primary); color: #fff;
  border-radius: var(--radius-md); font-size: var(--font-xs);
  font-weight: var(--weight-semibold); cursor: pointer;
  margin-top: var(--space-2); font-family: inherit;
  transition: opacity 0.2s;
}
.upsell-card__add:active { opacity: 0.8; }
.upsell-card__add:disabled { background: var(--color-text-secondary); }

/* --------------------------------------------------------------------------
   Product Rating (on cards and detail page)
   -------------------------------------------------------------------------- */
.product-card__rating {
  display: flex; align-items: center; gap: 3px;
  font-size: var(--font-xs); color: var(--color-warning, #f59e0b);
  font-weight: var(--weight-medium); margin-top: 2px;
}
.product-detail__rating {
  display: flex; align-items: center; gap: 6px;
  margin: var(--space-2) 0;
  font-size: var(--font-sm); font-weight: var(--weight-semibold);
  color: var(--color-warning, #f59e0b);
}
.product-detail__rating svg { flex-shrink: 0; }
.product-detail__rating-text {
  font-size: var(--font-xs); color: var(--color-text-secondary);
  font-weight: var(--weight-normal);
}
}
.hero-v2-phone-link::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 32px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 204, 0, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: -1;
}
.hero-v2-phone-link:hover::after { opacity: 1; }

/* "Tap to open" pill on phone */
.hero-v2-phone-tap {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: linear-gradient(135deg, #FFCC00 0%, #F59E0B 100%);
  color: #111827;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.4);
  letter-spacing: 0.4px;
  z-index: 10;
  animation: phone-tap-bounce 2.4s ease-in-out infinite;
}
@keyframes phone-tap-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}
@media (max-width: 768px) {
  .hero-v2-phone-tap { top: -12px; font-size: 0.68rem; padding: 5px 12px; }
}

/* ===== Sticky demo→register banner (shown on guest menu when source=demo_landing) ===== */
.demo-back-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.2,.8,.3,1);
  border-top: 2px solid #FFCC00;
}
.demo-back-banner.is-visible { transform: translateY(0); }
.demo-back-banner-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #FFCC00;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.demo-back-banner-text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.35;
  min-width: 0;
}
.demo-back-banner-text strong { font-weight: 800; }
.demo-back-banner-text small {
  display: block;
  opacity: 0.7;
  font-size: 0.78rem;
  margin-top: 2px;
}
.demo-back-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #FFCC00;
  color: #111827;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.18s;
}
.demo-back-banner-cta:hover {
  background: #FBBF24;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}
.demo-back-banner-close {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.18s;
}
.demo-back-banner-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
@media (max-width: 540px) {
  .demo-back-banner { padding: 12px 14px; gap: 10px; }
  .demo-back-banner-text { font-size: 0.78rem; }
  .demo-back-banner-text small { display: none; }
  .demo-back-banner-cta { padding: 9px 14px; font-size: 0.78rem; }
  .demo-back-banner-icon { width: 32px; height: 32px; font-size: 1rem; }
}
