/* =============================================
   MobileTrade – Shared Stylesheet
   ============================================= */

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

:root {
  --blue:    #1a3c6e;
  --blue-lt: #2356a8;
  --accent:  #e8380d;
  --gray-1:  #f5f6f8;
  --gray-2:  #e8eaed;
  --gray-3:  #b0b7c3;
  --text:    #1c1e22;
  --text-2:  #545b6b;
  --white:   #ffffff;
  --radius:  8px;
  --shadow:  0 2px 10px rgba(0,0,0,.08);
}

body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--gray-1); }
a    { color: inherit; text-decoration: none; }
img  { display: block; max-width: 100%; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── HEADER ──────────────────────────────────── */
.topbar {
  background: var(--blue);
  color: #a8c4f0;
  font-size: .78rem;
  padding: .35rem 0;
}
.topbar .inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: #a8c4f0; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 1.2rem; align-items: center; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.header {
  background: var(--white);
}
.header .inner { display: flex; align-items: center; gap: 1.5rem; padding: .8rem 0; }

.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px; background: var(--blue);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 30px; height: 30px; }
.logo-text { font-size: 1.2rem; font-weight: 700; color: var(--blue); line-height: 1.1; }
.logo-text span { display: block; font-size: .65rem; font-weight: 400; color: var(--text-2); letter-spacing: .05em; }

.search-bar { flex: 1; display: flex; max-width: 520px; }
.search-bar input {
  flex: 1; padding: .55rem 1rem; border: 1.5px solid var(--gray-2);
  border-right: none; border-radius: var(--radius) 0 0 var(--radius);
  font-size: .9rem; outline: none; transition: border-color .2s;
}
.search-bar input:focus { border-color: var(--blue-lt); }
.search-bar button {
  padding: .55rem 1.1rem; background: var(--blue);
  color: #fff; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem; transition: background .2s;
}
.search-bar button:hover { background: var(--blue-lt); }

.header-actions { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.header-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: .2rem; font-size: .72rem; color: var(--text-2);
  padding: .3rem .5rem; border-radius: 6px; transition: color .2s, background .2s;
}
.header-btn:hover { color: var(--blue); background: var(--gray-1); }
.header-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.cart-count {
  position: absolute; top: -5px; right: -5px; background: var(--accent);
  color: #fff; font-size: .65rem; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.header-btn-wrap { position: relative; }

.lang-select {
  display: flex; gap: .3rem;
}
.lang-select button {
  font-size: .78rem; padding: .2rem .5rem; border-radius: 4px;
  color: #fff; background: transparent; transition: background .2s, color .2s;
}
.lang-select button:hover { background: rgba(255,255,255,.15); color: #fff; }
.lang-select button.active { background: #fff; color: #000; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  background: linear-gradient(to top, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #e0e2e6;
  backdrop-filter: blur(8px);
}
.nav > .inner > ul { display: flex; list-style: none; margin: 0; padding: 0; justify-content: center; }
.nav > .inner > ul > li { position: relative; list-style: none; }
.nav > .inner > ul > li > a {
  display: block; padding: .75rem 1.1rem; color: #1c1e22; font-size: .88rem;
  font-weight: 500; transition: background .2s, color .2s; white-space: nowrap;
}
.nav > .inner > ul > li > a:hover { background: rgba(0,0,0,.06); color: var(--text); }
.nav > .inner > ul > li.active > a { background: rgba(0,0,0,.07); color: var(--text); font-weight: 700; }

.dropdown {
  display: none; position: absolute; top: 100%; left: 0; z-index: 200;
  background: #fff; box-shadow: var(--shadow); border-radius: 0 0 8px 8px;
  min-width: 200px; padding: .5rem 0; list-style: none; margin: 0;
}
.nav > .inner > ul > li:hover .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown li a {
  display: block; padding: .5rem 1.2rem; font-size: .85rem; color: var(--text);
  transition: background .2s; white-space: nowrap;
}
.dropdown li a:hover { background: var(--gray-1); color: var(--blue); }

/* ── INNER CONTAINER ─────────────────────────── */
.inner { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

/* ── HERO BANNER (style2 – hele) ─────────────── */
.hero {
  background: #fff;
  border-bottom: 1px solid var(--gray-2);
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
}
.hero::before { display: none; }

.hero-slider { position: relative; width: 100%; }
.hero-slides { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.hero-slide { min-width: 100vw; background: #fff; }
.hero-slide-inner { display: flex; align-items: center; gap: 3rem; }

.hero-slide-text { color: var(--text); flex: 1; }
.hero-slide-text .label {
  display: inline-block;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: #fff; background: #0d9e5c; border: 1px solid #0d9e5c;
  border-radius: 20px; padding: .2rem .85rem; margin-bottom: .9rem;
}
.hero-slide-text h1 {
  font-size: 2.4rem; font-weight: 800; line-height: 1.15; margin-bottom: .8rem;
  color: var(--text); text-shadow: none;
}
.hero-slide-text .sub { font-size: .95rem; color: var(--text-2); margin-bottom: 1.6rem; line-height: 1.6; }

.btn-primary {
  display: inline-block; padding: .75rem 2rem; background: #c93a00;
  color: #fff; border-radius: var(--radius); font-weight: 700; font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(201,58,0,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,58,0,.4); }

/* image area */
.hero-slide-img {
  flex-shrink: 0; width: 460px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-slide-img img {
  max-height: 320px; max-width: 420px;
  object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.12));
  -webkit-box-reflect: below 0px
    linear-gradient(transparent 90%, rgba(255,255,255,.25));
}
.hero-slide-img svg { width: 80px; opacity: .2; fill: var(--text-2); }

/* dots */
.hero-dots { display: flex; justify-content: center; gap: .6rem; margin-top: 1.4rem; }
.hero-dots button {
  width: 24px; height: 4px; border-radius: 2px;
  background: var(--gray-2); transition: background .3s, width .3s;
}
.hero-dots button.active { background: var(--blue); width: 36px; }

/* ── SECTION TITLE ───────────────────────────── */
.section-title {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.section-title h2 { font-size: 1.3rem; color: var(--blue); font-weight: 700; }
.section-title a { font-size: .85rem; color: var(--blue-lt); }
.section-title a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   STYLE2 – EURONICS-INSPIRED CATEGORIES
   ══════════════════════════════════════════════ */

/* hide old accordion, show new grid */
.cat-accordion-wrap { display: none !important; }
.categories2        { display: block !important; }

.categories {
  padding: 2rem 0; background: var(--white);
  border-bottom: 1px solid var(--gray-2);
}

.cat2-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.4rem;
}
.cat2-header h2 { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.cat2-header a  { font-size: .82rem; color: var(--blue-lt); }
.cat2-header a:hover { text-decoration: underline; }

.cat2-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: .75rem;
}

.cat2-card {
  display: flex; flex-direction: column; align-items: center;
  gap: .65rem; padding: 1.2rem .5rem 1rem;
  background: var(--white); border: 1.5px solid var(--gray-2);
  border-radius: 12px; text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  text-align: center;
}
.cat2-card:hover {
  border-color: var(--blue); transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(26,60,110,.1);
}

.cat2-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gray-1); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cat2-card:hover .cat2-icon { background: #dce7f9; }
.cat2-icon svg {
  width: 26px; height: 26px; fill: none; stroke: var(--blue);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.cat2-name {
  font-size: .8rem; font-weight: 600; color: var(--text); line-height: 1.3;
  transition: color .2s;
}
.cat2-card:hover .cat2-name { color: var(--blue); }
.cat2-count { font-size: .72rem; color: var(--gray-3); }

@media (max-width: 900px) { .cat2-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 500px) { .cat2-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── PRODUCT SECTION ─────────────────────────── */
.products-section { padding: 2rem 0; }

/* ── PRODUCT CARD ────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.product-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; overflow: hidden;
}
.product-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.13); transform: translateY(-3px); }

.product-img {
  height: 180px; background: var(--white);
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden; border-bottom: 1px solid var(--gray-2);
}
.product-img img {
  max-height: 160px; max-width: 85%; object-fit: contain;
  transition: transform .3s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img svg { width: 70px; opacity: .35; }
.badge {
  position: absolute; top: .6rem; left: .6rem;
  background: var(--accent); color: #fff; font-size: .65rem;
  font-weight: 700; padding: .2rem .5rem; border-radius: 4px; text-transform: uppercase;
}
.badge-new  { background: #0d9e5c; }
.badge-sale { background: var(--accent); }

.net-badge {
  position: absolute; bottom: .6rem; right: .6rem;
  font-size: .62rem; font-weight: 700; padding: .15rem .45rem;
  border-radius: 4px; letter-spacing: .04em;
}
.net-5G { background: #e8f4ff; color: #1a6ac4; border: 1px solid #b8d8f5; }
.net-4G { background: #f0f0f0; color: #666;    border: 1px solid #ddd; }

.product-body { padding: .9rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.product-brand { font-size: .72rem; color: var(--text-2); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.product-name { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.product-specs { font-size: .78rem; color: var(--gray-3); }

.product-footer { padding: .9rem; border-top: 1px solid var(--gray-2); display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.05rem; font-weight: 700; color: var(--blue); }
.btn-cart {
  padding: .4rem .9rem; background: var(--blue); color: #fff;
  border-radius: 6px; font-size: .8rem; font-weight: 600; transition: background .2s;
}
.btn-cart:hover { background: var(--blue-lt); }

/* ── PROMO BANNER ────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, #1a3c6e 0%, #2356a8 100%);
  padding: 2rem 0; color: #fff;
}
.promo-banner h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: .4rem; }
.promo-banner p { color: #c5d8f5; font-size: .9rem; }
.promo-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.promo-badge {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px; padding: .3rem .9rem; font-size: .8rem; color: #fff;
}

/* ── FINANCING STRIP ─────────────────────────── */
.financing { background: var(--white); padding: 1.5rem 0; border-top: 1px solid var(--gray-2); border-bottom: 1px solid var(--gray-2); }
.financing .inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.fin-item { display: flex; align-items: center; gap: .8rem; font-size: .85rem; color: var(--text-2); }
.fin-item-delivery { color: var(--blue); font-weight: 500; }
.fin-icon {
 height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: flex-start;
}
.fin-icon img, .fin-logo-img {
  height: 28px; width: auto; max-width: 80px;
  display: block; object-fit: contain;
}
.fin-icon svg { height: 28px; width: 28px; color: var(--blue); }
.fin-logo {
  height: 28px; display: flex; align-items: center; padding: .2rem .7rem;
  border: 1px solid var(--gray-2); border-radius: 6px; font-weight: 700; font-size: .9rem; color: var(--blue);
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(35,86,168,.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(14,40,90,.7) 0%, transparent 65%),
    linear-gradient(135deg, #0b1e3d 0%, #1a3c6e 60%, #0f2850 100%);
  color: #a8c4f0; padding: 3rem 0 1.5rem; margin-top: 3rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer h4 { color: #fff; font-size: .9rem; margin-bottom: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: .5rem; }
.footer ul li a { font-size: .83rem; color: #a8c4f0; transition: color .2s; }
.footer ul li a:hover { color: #fff; }
.footer-copy { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; text-align: center; font-size: .8rem; }
.footer-about p { font-size: .83rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a { font-size: .9rem; color: #fff; font-weight: 600; }

/* ═══════════════════════════════════════════════
   PHONES PAGE
   ═══════════════════════════════════════════════ */
.page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; padding: 1.5rem 0 3rem; }

/* ── BREADCRUMB ─────────────────────────────── */
.breadcrumb { padding: .8rem 0; background: var(--white); border-bottom: 1px solid var(--gray-2); }
.breadcrumb ol { display: flex; gap: .5rem; align-items: center; font-size: .83rem; color: var(--text-2); list-style: none; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: '/'; margin-right: .5rem; color: var(--gray-3); }
.breadcrumb a:hover { color: var(--blue); text-decoration: underline; }
.breadcrumb li:last-child { color: var(--text); font-weight: 500; }

/* ── SIDEBAR / FILTERS ───────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 1rem; align-self: start; position: sticky; top: 70px; }
.filter-box { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.filter-header {
  padding: .8rem 1rem; background: var(--blue); color: #fff; font-weight: 600;
  font-size: .88rem; display: flex; align-items: center; gap: .5rem;
}
.filter-header svg { width: 16px; fill: #fff; opacity: .8; }
.filter-section { border-bottom: 1px solid var(--gray-2); padding: .8rem 1rem; }
.filter-section:last-child { border-bottom: none; }
.filter-section-title {
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-2); margin-bottom: .6rem; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; user-select: none;
}
.filter-section-title .toggle-arrow { transition: transform .2s; font-size: .7rem; }
.filter-section-title.collapsed .toggle-arrow { transform: rotate(-90deg); }
.filter-list { display: flex; flex-direction: column; gap: .4rem; }
.filter-list.hidden, .price-range-wrap.hidden, .color-filter.hidden { display: none; }
.filter-item { display: flex; align-items: center; gap: .6rem; font-size: .84rem; color: var(--text); cursor: pointer; }
.filter-item input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--blue); cursor: pointer; }
.filter-item:hover { color: var(--blue); }
.filter-count { margin-left: auto; font-size: .75rem; color: var(--gray-3); }

/* Price range */
.price-range-wrap { padding: .5rem 0; }
.price-inputs { display: flex; gap: .5rem; align-items: center; }
.price-inputs input {
  flex: 1; padding: .4rem .6rem; border: 1.5px solid var(--gray-2); border-radius: 6px;
  font-size: .83rem; text-align: center; outline: none;
}
.price-inputs input:focus { border-color: var(--blue); }
.price-inputs span { color: var(--gray-3); font-size: .85rem; }
.range-slider { width: 100%; margin: .8rem 0 .3rem; accent-color: var(--blue); }
.price-labels { display: flex; justify-content: space-between; font-size: .75rem; color: var(--gray-3); }

/* Rating stars filter */
.rating-filter { display: flex; flex-direction: column; gap: .4rem; }
.rating-row { display: flex; align-items: center; gap: .5rem; font-size: .83rem; cursor: pointer; }
.rating-row input[type="radio"] { accent-color: var(--blue); }
.stars { color: #f5a623; letter-spacing: -.1em; }

/* Color filter */
.color-filter { display: flex; flex-wrap: wrap; gap: .5rem; }
.color-swatch {
  width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: border-color .2s, transform .2s;
}
.color-swatch:hover { transform: scale(1.15); }
.color-swatch.selected { border-color: var(--blue); }

/* Clear filters btn */
.btn-clear-filters {
  display: block; width: 100%; padding: .5rem; background: none;
  border: 1.5px solid var(--gray-2); border-radius: 6px; color: var(--text-2);
  font-size: .83rem; text-align: center; transition: border-color .2s, color .2s;
  margin-top: .3rem;
}
.btn-clear-filters:hover { border-color: var(--accent); color: var(--accent); }

/* ── SHOP MAIN ───────────────────────────────── */
.shop-main {}
.shop-toolbar {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .75rem 1rem; display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.results-count { font-size: .85rem; color: var(--text-2); flex: 1; }
.results-count strong { color: var(--text); }

.sort-select {
  padding: .4rem .8rem; border: 1.5px solid var(--gray-2); border-radius: 6px;
  font-size: .83rem; color: var(--text); outline: none; cursor: pointer;
}
.sort-select:focus { border-color: var(--blue); }

.view-toggle { display: flex; gap: .3rem; }
.view-btn {
  padding: .4rem .6rem; border: 1.5px solid var(--gray-2); border-radius: 6px;
  color: var(--text-2); transition: all .2s;
}
.view-btn.active, .view-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.view-btn svg { width: 16px; height: 16px; display: block; stroke: currentColor; fill: none; stroke-width: 2; }

/* Active filter tags */
.active-filters { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.filter-tag {
  display: flex; align-items: center; gap: .4rem; background: #e8f0fc;
  color: var(--blue); border-radius: 20px; padding: .2rem .8rem; font-size: .8rem;
}
.filter-tag .remove { cursor: pointer; font-size: .9rem; opacity: .7; }
.filter-tag .remove:hover { opacity: 1; }

/* Grid / list toggle */
.products-area { }
.product-grid.list-view { grid-template-columns: 1fr; }
.product-grid.list-view .product-card { flex-direction: row; }
.product-grid.list-view .product-img { width: 150px; height: 130px; flex-shrink: 0; }
.product-grid.list-view .product-body { flex: 1; }
.product-grid.list-view .product-footer { flex-direction: column; align-items: flex-start; border-top: none; border-left: 1px solid var(--gray-2); padding: .9rem; gap: .6rem; width: 160px; flex-shrink: 0; }

/* ── PAGINATION ──────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: .4rem; margin-top: 2rem; }
.pagination button {
  width: 38px; height: 38px; border-radius: 8px; font-size: .85rem; font-weight: 500;
  border: 1.5px solid var(--gray-2); color: var(--text-2); transition: all .2s;
}
.pagination button:hover { border-color: var(--blue); color: var(--blue); }
.pagination button.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.pagination button.dots { border: none; cursor: default; }

/* ── PHONE BRAND LOGOS STRIP ─────────────────── */
/* ── BRANDS AUTO-SCROLL ──────────────────────── */
.brands-strip {
  background: var(--white); padding: 1rem 0; overflow: hidden;
}
.brands-track {
  display: flex; gap: 4rem; align-items: center;
  width: max-content;
  animation: brands-scroll 40s linear infinite;
}
.brands-strip:hover .brands-track { animation-play-state: paused; }

@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-logo { display: flex; align-items: center; padding: .35rem 1rem; border: 1.5px solid var(--text); border-radius: 6px; font-weight: 700; font-size: .85rem; white-space: nowrap; cursor: default; opacity: 0.3; transition: opacity .3s, color .3s, border-color .3s; flex-shrink: 0; -webkit-transition: opacity .3s, color .3s, border-color .3s; -moz-transition: opacity .3s, color .3s, border-color .3s; -ms-transition: opacity .3s, color .3s, border-color .3s; -o-transition: opacity .3s, color .3s, border-color .3s;
}
.brand-logo:hover {
  opacity: 1; color: var(--text); border-color: #aaa;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-slide-img { display: none; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .header .inner { flex-wrap: wrap; }
}
