/* ═══ طلة — متجر ملابس وأحذية ═══ */

/* ─── Hero (أعلى الصفحة) ─── */
.store-hero {
  position: relative;
  margin: 0;
  min-height: 240px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.store-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.store-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 63, 45, 0.92) 0%,
    rgba(27, 63, 45, 0.55) 45%,
    rgba(27, 63, 45, 0.25) 100%
  );
}

.store-hero-content {
  position: relative;
  z-index: 1;
  padding: 28px 20px 24px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.store-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-gold-light);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.store-hero-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.store-hero-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 14px;
}

.store-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.store-hero-tags span {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(212, 169, 122, 0.35);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-gold-light);
}

@media (min-width: 768px) {
  .store-hero { min-height: 300px; }
  .store-hero-title { font-size: 42px; }
  .store-hero-desc { font-size: 15px; max-width: 400px; }
  .store-hero-content { padding: 36px 24px 32px; }
}

/* ─── Bottom Nav (التنقل الرئيسي) ─── */
.bottom-nav {
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-nav-inner {
  display: flex;
  height: var(--nav-h);
  max-width: 560px;
  margin: 0 auto;
  padding: 0 4px;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  color: var(--grey-400);
}

.bottom-nav-item.active { color: var(--brand-green); }

.bottom-nav-icon { font-size: 22px; }

.bottom-nav-label {
  font-size: 8px;
  font-weight: 600;
}

.bottom-nav-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 16px);
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  background: var(--brand-gold);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  border-radius: var(--radius-full);
  line-height: 15px;
  text-align: center;
}

/* ─── Layout ─── */
.home-layout,
.page-layout.has-bottom-nav {
  padding-bottom: var(--nav-h);
}

.home-layout {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--bg-page);
}

.home-content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.page-layout { background: var(--bg-page); min-height: 100dvh; }
.page-layout .page-content { overflow-y: auto; }

/* ─── Search ─── */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 16px;
  padding: 11px 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.search-bar .material-icons-round { color: var(--brand-gold); font-size: 20px; }
.search-bar span { color: var(--grey-400); font-size: 13px; }

.search-page-input { margin: 12px 16px; position: relative; }

.search-page-input input {
  width: 100%;
  padding: 12px 44px 12px 14px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  font-size: 14px;
}

.search-page-input input:focus {
  outline: none;
  border-color: var(--brand-green-light);
}

.search-page-input .material-icons-round {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-gold);
  font-size: 20px;
}

.search-toolbar { padding: 0 16px 10px; display: flex; gap: 8px; }

/* ─── Ad Slider ─── */
.ad-slider { margin: 4px 16px 0; }

.ad-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 150px;
}

.ad-slider-track {
  display: flex;
  direction: ltr;
  height: 100%;
  transition: transform 0.35s ease;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.ad-slide { flex: 0 0 100%; height: 100%; overflow: hidden; }
.ad-slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

.ad-dots { display: flex; justify-content: center; gap: 5px; margin-top: 10px; }

.ad-dot {
  width: 6px; height: 6px;
  border-radius: var(--radius-full);
  background: var(--grey-300);
  cursor: pointer;
}

.ad-dot.active { background: var(--brand-green); width: 18px; border-radius: 3px; }

@media (min-width: 768px) {
  .ad-slider-viewport { height: 220px; }
  .ad-slider { max-width: 720px; margin-inline: auto; }
}

/* ─── Sections ─── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 12px;
}

.section-title-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-green);
}

.section-view-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  gap: 2px;
}

.section-view-all .material-icons-round { font-size: 14px; }

.special-section { margin: 24px 0; }

.special-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin: 0 16px 12px;
  border-radius: var(--radius-lg);
  color: var(--white);
}

.special-section-header h2 { font-size: 15px; font-weight: 700; }

.special-section-header .section-view-all { color: rgba(255,255,255,0.85); }

/* ─── Categories ─── */
.categories-section { margin: 20px 0 4px; }

.categories-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 12px;
  scroll-snap-type: x mandatory;
}

.categories-scroll::-webkit-scrollbar { display: none; }

.category-card {
  min-width: 76px;
  scroll-snap-align: start;
  text-align: center;
  cursor: pointer;
  flex-shrink: 0;
}

.category-image {
  width: 68px;
  height: 68px;
  margin: 0 auto 6px;
  border-radius: var(--radius-full);
  background: var(--brand-green-pale);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--grey-200);
}

.category-image img { width: 100%; height: 100%; object-fit: cover; }
.category-image .material-icons-round { font-size: 26px; color: var(--brand-gold); }

.category-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Social ─── */
.social-strip {
  margin: 20px 16px;
  padding: 16px;
  background: var(--brand-green-pale);
  border-radius: var(--radius-lg);
  text-align: center;
}

.social-strip-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-gold);
  margin-bottom: 10px;
}

.social-strip-inner { display: flex; justify-content: center; gap: 10px; }

.social-strip-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-200);
}

.social-strip-btn .material-icons-round { font-size: 18px; color: var(--brand-green); }

/* ─── Product Cards ─── */
.home-layout .product-card,
.page-layout .product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}

.home-layout .product-card-image,
.page-layout .product-card-image {
  aspect-ratio: 3/4;
  background: var(--grey-100);
  overflow: hidden;
  position: relative;
}

.home-layout .product-card-image img,
.page-layout .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-layout .product-badges,
.page-layout .product-badges {
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.home-layout .product-badges .badge,
.page-layout .product-badges .badge {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 700;
  color: var(--white);
}

.home-layout .badge-blue, .page-layout .badge-blue { background: var(--brand-green); }
.home-layout .badge-orange, .page-layout .badge-orange { background: var(--brand-gold); color: var(--white); }
.home-layout .badge-purple, .page-layout .badge-purple { background: var(--brand-green-mid); }
.home-layout .badge-red, .page-layout .badge-red { background: #C0392B; }

.home-layout .favorite-btn,
.page-layout .favorite-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.home-layout .favorite-btn .material-icons-round,
.page-layout .favorite-btn .material-icons-round { font-size: 16px; color: var(--grey-400); }

.home-layout .favorite-btn.active .material-icons-round,
.page-layout .favorite-btn.active .material-icons-round { color: #C0392B; }

.home-layout .product-card-info,
.page-layout .product-card-info {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-layout .product-name,
.page-layout .product-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-layout .price-current,
.page-layout .price-current {
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-green);
}

.home-layout .price-original,
.page-layout .price-original {
  font-size: 10px;
  color: var(--grey-400);
  text-decoration: line-through;
}

.home-layout .add-cart-btn,
.page-layout .add-cart-btn {
  margin-top: 4px;
  width: 100%;
  padding: 7px;
  border-radius: var(--radius-sm);
  background: var(--brand-green);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.home-layout .add-cart-btn.in-cart,
.page-layout .add-cart-btn.in-cart {
  background: var(--brand-gold);
}

.home-layout .add-cart-btn .material-icons-round,
.page-layout .add-cart-btn .material-icons-round { font-size: 13px; }

.home-layout .products-grid,
.page-layout .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 16px;
}

.home-layout .products-grid-horizontal,
.page-layout .products-grid-horizontal {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 16px 8px;
  scroll-snap-type: x mandatory;
}

.home-layout .products-grid-horizontal .product-card,
.page-layout .products-grid-horizontal .product-card {
  min-width: 140px;
  max-width: 140px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ─── Buttons (storefront) ─── */
.page-layout .btn-primary,
.home-layout .btn-primary,
.checkout-buttons .btn-primary,
.not-found-page .btn-primary {
  background: var(--brand-green);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-weight: 600;
  box-shadow: none;
}

.page-layout .btn-primary:hover,
.home-layout .btn-primary:hover { background: var(--brand-green-mid); }

.page-layout .btn-orange,
.home-layout .btn-orange { background: var(--brand-gold); color: var(--white); }

.page-layout .btn-outline,
.home-layout .btn-outline {
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  font-weight: 600;
  background: var(--white);
}

.page-layout .btn-danger { background: #C0392B; border-radius: var(--radius-lg); }

/* ─── App Bar ─── */
.page-layout .page-appbar {
  background: var(--brand-green);
  color: var(--white);
  padding: 0 16px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.page-layout .page-appbar h1 {
  font-size: 15px;
  font-weight: 700;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-layout .page-appbar .back-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold-light);
}

/* ─── Load More ─── */
.load-more-btn {
  display: block;
  margin: 16px auto;
  padding: 11px 32px;
  background: var(--brand-green);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.load-more-btn:disabled { opacity: 0.5; cursor: wait; }

.store-load-more-wrap { padding: 4px 16px 20px; }

.store-load-more-meta {
  text-align: center;
  font-size: 11px;
  color: var(--grey-400);
  margin-bottom: 8px;
}

/* ─── Cart ─── */
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  border: 1px solid var(--grey-200);
}

.cart-item-image {
  width: 72px;
  height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--grey-100);
  flex-shrink: 0;
}

.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-name { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.cart-item-price { font-weight: 700; font-size: 14px; color: var(--brand-green); margin-top: 4px; }
.cart-item-size { font-size: 11px; color: var(--text-secondary); }
.cart-item-actions { display: flex; align-items: center; gap: 6px; margin-top: 8px; }

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-200);
}

.qty-btn .material-icons-round { font-size: 16px; }
.qty-value { font-weight: 700; min-width: 22px; text-align: center; font-size: 14px; }

.cart-summary {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px;
  border-top: 1px solid var(--grey-200);
  box-shadow: 0 -2px 8px rgba(27,63,45,0.06);
  z-index: 150;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.summary-row.total {
  font-size: 17px;
  font-weight: 800;
  color: var(--brand-green);
  border-top: 1px solid var(--grey-200);
  padding-top: 10px;
  margin-top: 6px;
}

.summary-row.discount { color: #C0392B; font-weight: 600; }

/* ─── Product Detail ─── */
.product-detail { padding-bottom: 76px; }

.product-gallery { background: var(--grey-100); }

.product-gallery-track {
  display: flex;
  direction: ltr;
  transition: transform 0.3s ease;
  cursor: zoom-in;
  touch-action: pan-y;
  user-select: none;
}

.product-gallery-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-100);
}

.product-gallery-slide img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  pointer-events: none;
}

.product-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  background: var(--white);
}

.product-detail-info { padding: 16px; background: var(--white); }

.product-detail-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-green);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-detail-desc {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
  margin: 14px 0;
  padding-top: 12px;
  border-top: 1px solid var(--grey-200);
}

.product-detail .price-current { font-size: 20px; font-weight: 800; color: var(--brand-green); }

.size-selector, .color-selector { margin-top: 16px; }

.size-selector-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.size-options, .color-options { display: flex; flex-wrap: wrap; gap: 6px; }

.size-chip {
  min-width: 42px;
  padding: 8px 12px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.size-chip.active {
  border-color: var(--brand-green);
  background: var(--brand-green);
  color: var(--white);
}

.size-chip:disabled { opacity: 0.35; cursor: not-allowed; }
.size-stock { font-size: 10px; color: var(--text-secondary); }
.size-chip.active .size-stock { color: rgba(255,255,255,0.7); }

.color-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.color-chip.active {
  border-color: var(--brand-green);
  background: var(--brand-green-pale);
}

.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,0,0,0.1);
}

.product-detail-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  display: flex;
  gap: 10px;
  z-index: 150;
}

/* ─── Search extras ─── */
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 10px; }

.filter-chip {
  padding: 5px 10px;
  background: var(--brand-green-pale);
  color: var(--brand-green);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-history { padding: 0 16px 16px; }

.search-history h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-gold);
  margin-bottom: 8px;
}

.history-item {
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  border: 1px solid var(--grey-200);
}

.history-item .material-icons-round { font-size: 16px; color: var(--grey-400); }

/* ─── Checkout ─── */
.checkout-form { padding: 16px; }

.checkout-summary {
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--grey-200);
}

.checkout-summary h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-200);
}

.checkout-form .form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-green);
}

.checkout-form .form-group input,
.checkout-form .form-group textarea {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  background: var(--white);
}

.checkout-form .form-group input:focus,
.checkout-form .form-group textarea:focus {
  outline: none;
  border-color: var(--brand-green-light);
}

.delivery-info {
  background: var(--brand-gold-pale);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-primary);
  border-right: 3px solid var(--brand-gold);
  line-height: 1.6;
}

.checkout-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px 24px;
}

.checkout-buttons .btn-whatsapp { border-radius: var(--radius-lg); font-weight: 600; }

/* ─── Categories Grid ─── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 16px;
}

.category-grid-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  cursor: pointer;
}

.category-grid-image { aspect-ratio: 1; background: var(--brand-green-pale); }
.category-grid-image img { width: 100%; height: 100%; object-fit: cover; }

.category-grid-name {
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  color: var(--brand-green);
}

@media (min-width: 768px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); max-width: 720px; margin: 0 auto; }
  .home-layout .products-grid, .page-layout .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); max-width: 960px; }
  .home-layout .products-grid, .page-layout .products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Empty / Loading ─── */
.page-layout .empty-state .empty-icon,
.home-layout .empty-state .empty-icon { background: var(--brand-green-pale); }

.page-layout .empty-state .empty-icon .material-icons-round,
.home-layout .empty-state .empty-icon .material-icons-round { color: var(--brand-gold); }

.page-layout .loading-center .spinner-blue,
.home-layout .loading-center .spinner-blue {
  border-color: rgba(27,63,45,0.15);
  border-top-color: var(--brand-green);
}

/* ─── Zoom ─── */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,63,45,0.92);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.zoom-overlay img { max-width: 95%; max-height: 95%; object-fit: contain; }

/* ─── 404 ─── */
.not-found-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  background: var(--bg-page);
}

.not-found-code { font-size: 64px; font-weight: 800; color: var(--brand-gold); line-height: 1; margin-bottom: 12px; }
.not-found-page h3 { font-size: 18px; font-weight: 700; color: var(--brand-green); margin-bottom: 6px; }
.not-found-page p { color: var(--text-secondary); margin-bottom: 20px; font-size: 14px; }

/* ─── Snackbar above nav ─── */
body.store-front #snackbar-container {
  bottom: calc(var(--nav-h) + 10px);
}

.page-layout.cart-page-full { padding-bottom: 0; }
.page-layout.cart-page-full .page-content { padding-bottom: 200px !important; }

body.store-front.cart-has-summary #snackbar-container {
  bottom: 190px;
}
body.store-front .modal-content .btn-primary {
  background: var(--brand-green);
  border-radius: var(--radius-lg);
  box-shadow: none;
}

body.store-front .modal-content h3 { color: var(--brand-green); font-weight: 700; }

body.store-front .modal-content .form-group input:focus,
body.store-front .modal-content .form-group select:focus {
  border-color: var(--brand-green-light);
  box-shadow: none;
}
