/* ═══════════════════════════════════════════════════════════════════════════
   Tripple R (Pvt) Ltd – E-Catalog Stylesheet
   Theme: #ff5706 (Blaze Orange) & White
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --brand:       #ff5706;
  --brand-dark:  #cc4400;
  --brand-light: #fff3ee;
  --brand-glow:  rgba(255,87,6,0.18);
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --ink:         #1a1208;
  --ink-mid:     #5a4a3a;
  --ink-soft:    #9a8a7a;
  --border:      #ede8e0;
  --shadow-sm:   0 2px 8px rgba(255,87,6,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --radius:      12px;
  --radius-lg:   20px;
  --font:        'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }
a { text-decoration: none; color: inherit; }

/* ── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--border); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--brand);
  box-shadow: 0 4px 20px rgba(255,87,6,0.10);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}

/* ── Logo ──────────────────────────────────────────────────────────────────── */
.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

/* Logo — no box, blends cleanly into the white header */
.logo-icon {
  display: contents; /* wrapper disappears — image sits directly in flex row */
}
.logo-img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: multiply; /* makes white PNG bg invisible on white header */
}

.logo-text {
  line-height: 1.15;
}
.logo-text strong {
  display: block;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.2px;
}
.logo-text strong em {
  font-style: normal;
  color: var(--brand);
}
.logo-text span {
  display: block;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Search ────────────────────────────────────────────────────────────────── */
.search-wrap {
  flex: 1;
  max-width: 560px;
  margin-left: auto;
  position: relative;
}
.search-wrap input {
  width: 100%;
  height: 44px;
  padding: 0 52px 0 18px;
  border: 2px solid var(--border);
  border-radius: 22px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.search-wrap input::placeholder { color: var(--ink-soft); }
.search-wrap input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-glow);
  background: var(--white);
}
.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.search-btn:hover { background: var(--brand-dark); transform: translateY(-50%) scale(1.08); }
.search-btn svg { width: 16px; height: 16px; }

/* Item count badge */
.item-count-badge {
  flex-shrink: 0;
  background: var(--brand-light);
  border: 1px solid rgba(255,87,6,0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-banner {
  background: linear-gradient(135deg, var(--brand) 0%, #ff8c00 60%, #ffb347 100%);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-banner::after {
  content: 'RRR';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font);
  font-size: 180px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
}
.hero-banner h1 {
  font-family: var(--font);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.hero-banner p {
  margin-top: 10px;
  font-family: var(--font);
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY FILTER BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.filter-bar-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 75px;
  z-index: 90;
}
.filter-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  padding: 14px 22px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ink-mid);
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}
.filter-btn:hover {
  color: var(--brand);
  background: var(--brand-light);
}
.filter-btn.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  background: var(--brand-light);
}

.filter-skeleton {
  height: 14px;
  width: 80px;
  background: linear-gradient(90deg, var(--border) 25%, #f0ece4 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin: 16px 12px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════════════════ */
.main-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.results-info {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
}
.results-info strong { color: var(--ink); font-weight: 600; }

.sort-select {
  padding: 9px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* ── Product Card ──────────────────────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: cardIn 0.35s ease both;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,87,6,0.25);
}
.product-card:hover .card-cta { background: var(--brand-dark); }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--off-white);
  overflow: hidden;
}
.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}
.product-card:hover .card-image-wrap img { transform: scale(1.06); }

.card-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
}
.card-no-image svg { width: 36px; height: 36px; opacity: 0.3; }

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
}

.stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.stock-badge.in-stock  { background: #e6f9f0; color: #1a7a45; }
.stock-badge.low-stock { background: #fff8e0; color: #a07000; }
.stock-badge.out-stock { background: #fdecea; color: #c0392b; }

.card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 3px;
}
.card-code {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.card-name {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.card-price {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.3px;
}
.card-price-orig {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.card-measure {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: auto;
  background: var(--off-white);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.card-cta {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.card-cta:active { transform: scale(0.97); }

/* ── Skeleton Cards ─────────────────────────────────────────────────────────── */
.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.skeleton-image {
  aspect-ratio: 1/1;
  background: linear-gradient(90deg, var(--border) 25%, #f0ece4 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--border) 25%, #f0ece4 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-line.short  { width: 55%; }
.skeleton-line.medium { width: 75%; }
.skeleton-line.tall   { height: 20px; width: 45%; }

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

/* ═══════════════════════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════════════════════ */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-soft);
}
.empty-state svg { width: 72px; height: 72px; opacity: 0.2; margin: 0 auto 16px; }
.empty-state h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-mid);
  margin-bottom: 8px;
}
.empty-state p { font-family: var(--font); font-size: 14px; font-weight: 400; }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  transition: all var(--transition);
}
.page-btn:hover:not(:disabled) {
  border-color: var(--brand);
  color: var(--brand);
}
.page-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.page-btn.arrow { font-size: 20px; }
.page-ellipsis {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,10,0,0.72);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.2s ease;
}
.modal-overlay.closing { animation: fadeOut 0.2s ease forwards; }

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: slideUp 0.25s cubic-bezier(0.34,1.56,0.64,1) both;
  position: relative;
}

@keyframes slideUp {
  from { transform: translateY(40px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  color: var(--ink-mid);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: var(--brand); color: var(--white); }

.modal-image {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  min-height: 320px;
}
.modal-image img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}
.modal-image .no-img-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: 13px;
}
.modal-image .no-img-big svg { width: 64px; opacity: 0.2; }

.modal-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.modal-cat-tag {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.modal-name {
  font-family: var(--font);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}
.modal-code {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.modal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 12px 0;
}
.modal-price-block { margin-bottom: 4px; }
.modal-price-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.modal-price {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -1px;
}
.modal-price-currency {
  font-size: 16px;
  vertical-align: super;
  font-weight: 700;
  margin-right: 2px;
}

.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.spec-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.spec-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.spec-value {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.modal-stock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.modal-stock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.modal-stock-dot.green  { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.modal-stock-dot.yellow { background: #eab308; box-shadow: 0 0 0 3px rgba(234,179,8,0.2); }
.modal-stock-dot.red    { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.2); }
.modal-stock-text {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
}

.modal-contact-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.modal-contact-btn:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  z-index: 300;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 28px 24px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.site-footer strong { color: var(--brand); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .modal-box { grid-template-columns: 1fr; }
  .modal-image {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    min-height: 200px;
  }
}

@media (max-width: 640px) {
  .header-inner { height: 62px; padding: 0 16px; gap: 12px; }
  .logo-img { height: 42px; }
  .logo-text strong { font-size: 15px; }
  .logo-text span { display: none; }
  .item-count-badge { display: none; }
  .hero-banner { padding: 36px 16px; }
  .hero-banner::after { display: none; }
  .main-wrap { padding: 20px 16px 48px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .modal-specs { grid-template-columns: 1fr; }
  .modal-info { padding: 20px 18px; }
}

@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-name { font-size: 13px; }
  .card-price { font-size: 17px; }
}

/* ── Error banner ────────────────────────────────────────────────────────── */
.error-banner {
  grid-column: 1 / -1;
  background: #fdecea;
  border: 1px solid #f5c6cb;
  border-radius: var(--radius);
  padding: 20px 24px;
  color: #c0392b;
  font-family: var(--font);
  font-size: 14px;
  text-align: center;
}
.error-banner button {
  margin-top: 10px;
  padding: 8px 20px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}