/*
Theme Name: Manconnection Shop
Theme URI: https://manconnections.com
Author: Moose IT
Author URI: https://mooseit.cloud/
Description: Modern, responsive retail & wholesale ICT storefront theme for Manconnection Shop (Mwanza, Tanzania). Built around the brand logo — deep blue, green accent, black typography on clean white — with rounded, tech-styled UI. Includes Home, About, Products, Services and Contact page templates.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: manconnection-shop
Tags: business, e-commerce, technology, custom-menu, featured-images, responsive
*/

/* ==========================================================================
   Design tokens (from the Man Connections logo)
   ========================================================================== */
:root {
	--mc-blue: #0B3D91;        /* deep blue — primary */
	--mc-blue-600: #1257C2;
	--mc-blue-400: #2E7DF6;
	--mc-blue-050: #EAF1FF;
	--mc-green: #16A34A;       /* green accent */
	--mc-green-400: #22C55E;
	--mc-green-050: #E7F7EE;
	--mc-ink: #0B1220;         /* black — typography */
	--mc-ink-700: #263041;
	--mc-muted: #5B6577;
	--mc-line: #E4E9F2;
	--mc-white: #FFFFFF;
	--mc-bg: #F6F8FC;

	--mc-radius: 16px;
	--mc-radius-sm: 10px;
	--mc-radius-lg: 26px;
	--mc-shadow: 0 10px 30px rgba(11, 61, 145, .10);
	--mc-shadow-lg: 0 24px 60px rgba(11, 61, 145, .18);
	--mc-container: 1180px;

	--mc-grad-blue: linear-gradient(135deg, #0B3D91 0%, #1257C2 55%, #2E7DF6 100%);
	--mc-grad-hero: radial-gradient(1200px 600px at 12% -10%, rgba(46,125,246,.55), transparent 60%),
	                radial-gradient(900px 500px at 110% 20%, rgba(34,197,94,.30), transparent 55%),
	                linear-gradient(135deg, #08296A 0%, #0B3D91 45%, #123C86 100%);

	--mc-font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--mc-font);
	color: var(--mc-ink);
	background: var(--mc-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--mc-blue-600); text-decoration: none; }
a:hover { color: var(--mc-blue); }

h1, h2, h3, h4 { color: var(--mc-ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--mc-container); margin-inline: auto; padding-inline: 20px; }

.section { padding: clamp(48px, 7vw, 96px) 0; }
.section--tint { background: var(--mc-bg); }

.eyebrow {
	display: inline-flex; align-items: center; gap: .5rem;
	font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: var(--mc-green); margin: 0 0 .6rem;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--mc-green); }

.section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 56px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head p { color: var(--mc-muted); font-size: 1.05rem; }

.lead { font-size: 1.15rem; color: var(--mc-muted); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex; align-items: center; gap: .55rem;
	padding: .85rem 1.4rem; border-radius: 999px;
	font-weight: 700; font-size: .98rem; line-height: 1;
	border: 2px solid transparent; cursor: pointer;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
	white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--mc-grad-blue); color: #fff; box-shadow: var(--mc-shadow); }
.btn--primary:hover { color: #fff; box-shadow: var(--mc-shadow-lg); }

.btn--green { background: var(--mc-green); color: #fff; box-shadow: 0 10px 24px rgba(22,163,74,.30); }
.btn--green:hover { background: var(--mc-green-400); color: #fff; }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn--outline { background: #fff; color: var(--mc-blue); border-color: var(--mc-line); }
.btn--outline:hover { border-color: var(--mc-blue-400); color: var(--mc-blue); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255,255,255,.9);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--mc-line);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark { width: 48px; height: 48px; border-radius: 12px; box-shadow: var(--mc-shadow); object-fit: cover; }
.custom-logo-link { display: inline-flex; }
.custom-logo-link img { width: 42px; height: 42px; border-radius: 12px; box-shadow: var(--mc-shadow); object-fit: cover; }
.hero__logo { object-fit: cover; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; color: var(--mc-ink); }
.brand__name b { color: var(--mc-blue); }
.brand__name i { color: var(--mc-green); font-style: normal; }
.brand__tag { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mc-muted); margin-top: 3px; }

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
	display: block; padding: .55rem .85rem; border-radius: 10px;
	color: var(--mc-ink-700); font-weight: 600; font-size: .95rem;
	transition: background .15s ease, color .15s ease;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { background: var(--mc-blue-050); color: var(--mc-blue); }

.header-cta { display: inline-flex; gap: .5rem; }

.nav-toggle {
	display: none; margin-left: auto;
	width: 44px; height: 44px; border: 1px solid var(--mc-line); border-radius: 12px;
	background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
	content: ""; display: block; width: 20px; height: 2px; background: var(--mc-ink); border-radius: 2px; position: relative;
	transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative; overflow: hidden;
	background: var(--mc-grad-hero); color: #fff;
	padding: clamp(56px, 9vw, 120px) 0 clamp(72px, 10vw, 130px);
}
.hero::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
	                  linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 46px 46px; mask-image: radial-gradient(70% 70% at 70% 20%, #000, transparent);
	opacity: .5;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero__logo { width: 92px; height: 92px; border-radius: 22px; box-shadow: var(--mc-shadow-lg); margin-bottom: 1.25rem; }
.hero h1 { color: #fff; }
.hero h1 span { color: var(--mc-green-400); }
.hero__tagline {
	display: inline-flex; gap: .5rem; align-items: center; flex-wrap: wrap;
	font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .95rem;
	color: #DCE7FF; margin: 0 0 1.25rem;
}
.hero__tagline b { color: var(--mc-green-400); }
.hero p.hero__intro { color: #CBD8F5; font-size: 1.12rem; max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.hero__card {
	background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
	border-radius: var(--mc-radius-lg); padding: 1.6rem; backdrop-filter: blur(6px);
}
.hero__card h3 { color: #fff; font-size: 1.05rem; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.1rem; }
.hero-stat { background: rgba(255,255,255,.06); border-radius: var(--mc-radius); padding: 1rem; }
.hero-stat b { display: block; font-size: 1.6rem; color: var(--mc-green-400); }
.hero-stat span { font-size: .82rem; color: #C7D4F0; }

/* ==========================================================================
   Category / feature cards
   ========================================================================== */
.card-grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.cat-card, .feature-card, .service-card, .product-card {
	background: #fff; border: 1px solid var(--mc-line); border-radius: var(--mc-radius);
	padding: 1.5rem; box-shadow: var(--mc-shadow);
	transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card__media { aspect-ratio: 16 / 9; margin: -1.5rem -1.5rem 1.25rem; overflow: hidden; border-radius: var(--mc-radius) var(--mc-radius) 0 0; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cat-card:hover, .feature-card:hover, .service-card:hover, .product-card:hover {
	transform: translateY(-4px); box-shadow: var(--mc-shadow-lg); border-color: var(--mc-blue-400);
}

.icon-badge {
	width: 56px; height: 56px; border-radius: 14px;
	display: grid; place-items: center; margin-bottom: 1rem;
	background: var(--mc-blue-050); color: var(--mc-blue);
}
.icon-badge svg { width: 28px; height: 28px; fill: currentColor; }
.icon-badge--green { background: var(--mc-green-050); color: var(--mc-green); }

.cat-card h3, .feature-card h3, .service-card h3 { margin-bottom: .35rem; }
.cat-card p, .feature-card p, .service-card p { color: var(--mc-muted); margin: 0; font-size: .96rem; }
.card-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-weight: 700; color: var(--mc-blue-600); }
.card-link svg { width: 16px; height: 16px; fill: currentColor; transition: transform .15s ease; }
.cat-card:hover .card-link svg { transform: translateX(3px); }

/* ==========================================================================
   Product cards
   ========================================================================== */
.product-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.product-card__media {
	aspect-ratio: 4 / 3; display: grid; place-items: center;
	background: linear-gradient(135deg, var(--mc-blue-050), #fff);
	color: var(--mc-blue); border-bottom: 1px solid var(--mc-line);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__media svg { width: 64px; height: 64px; fill: currentColor; opacity: .9; }
.product-card__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mc-green); }
.product-card__body h3 { font-size: 1.05rem; margin: .3rem 0 .4rem; }
.product-card__body p { color: var(--mc-muted); font-size: .9rem; margin: 0 0 1rem; }
.product-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.badge-pill {
	display: inline-flex; align-items: center; gap: .35rem;
	background: var(--mc-blue-050); color: var(--mc-blue); font-weight: 700; font-size: .78rem;
	padding: .35rem .7rem; border-radius: 999px;
}

/* ==========================================================================
   Products page — category blocks
   ========================================================================== */
.catalog-cat { margin-bottom: clamp(40px, 6vw, 72px); }
.catalog-cat__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.catalog-cat__head .icon-badge { margin: 0; }
.catalog-cat__head h2 { margin: 0; font-size: 1.6rem; }
.catalog-cat__head p { margin: .15rem 0 0; color: var(--mc-muted); font-size: .95rem; }
.product-filters { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(190px, 1fr) auto; align-items: end; gap: 1rem; padding: 1.25rem; margin-bottom: .75rem; background: var(--mc-bg); border: 1px solid var(--mc-line); border-radius: var(--mc-radius); }
.product-filters .field { margin: 0; }
.product-filters .btn { min-height: 46px; }
.filter-clear { align-self: center; font-weight: 700; font-size: .9rem; }
.product-results { color: var(--mc-muted); font-size: .9rem; margin: 0 0 2rem; }
.product-pagination { display: flex; justify-content: center; gap: .5rem; margin: 2rem 0 4rem; }
.product-pagination a { display: grid; place-items: center; min-width: 42px; height: 42px; padding-inline: .75rem; border: 1px solid var(--mc-line); border-radius: 10px; color: var(--mc-blue); font-weight: 700; background: #fff; }
.product-pagination a:hover, .product-pagination a.is-current { color: #fff; border-color: var(--mc-blue); background: var(--mc-blue); }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.feature-card { display: flex; flex-direction: column; }

/* ==========================================================================
   About page
   ========================================================================== */
.prose { max-width: 760px; }
.prose h2 { color: var(--mc-blue); margin-top: 2rem; }
.prose h2::after { content: ""; display: block; width: 64px; height: 4px; border-radius: 4px; background: var(--mc-green); margin-top: .5rem; }
.prose p { color: var(--mc-ink-700); }
.value-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .75rem; }
.value-list li { display: flex; gap: .75rem; align-items: flex-start; color: var(--mc-ink-700); }
.value-list svg { flex: 0 0 auto; width: 22px; height: 22px; fill: var(--mc-green); margin-top: .15rem; }

.page-hero { background: var(--mc-grad-hero); color: #fff; padding: clamp(48px, 7vw, 88px) 0; text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #CBD8F5; max-width: 60ch; margin-inline: auto; font-size: 1.08rem; }
.page-hero .breadcrumb { color: #9FB6E8; font-size: .85rem; margin-bottom: .75rem; }
.page-hero .breadcrumb a { color: #CBD8F5; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-info { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--mc-line); border-radius: var(--mc-radius); padding: 1.15rem 1.25rem; box-shadow: var(--mc-shadow); }
.contact-item .icon-badge { margin: 0; flex: 0 0 auto; width: 48px; height: 48px; }
.contact-item > div:last-child { min-width: 0; }
.contact-item h3 { margin: 0 0 .2rem; font-size: 1rem; }
.contact-item p, .contact-item a { margin: 0; color: var(--mc-muted); font-size: .95rem; overflow-wrap: anywhere; }
.contact-item a:hover { color: var(--mc-blue); }
@media (max-width: 640px) { .contact-info { grid-template-columns: 1fr; } }

.map-embed { margin-top: 1.5rem; border-radius: var(--mc-radius); overflow: hidden; border: 1px solid var(--mc-line); box-shadow: var(--mc-shadow); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

.contact-form { background: #fff; border: 1px solid var(--mc-line); border-radius: var(--mc-radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--mc-shadow); }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: .35rem; color: var(--mc-ink); }
.field input, .field textarea, .field select {
	width: 100%; padding: .8rem .9rem; font: inherit; color: var(--mc-ink);
	border: 1px solid var(--mc-line); border-radius: var(--mc-radius-sm); background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none; border-color: var(--mc-blue-400); box-shadow: 0 0 0 3px rgba(46,125,246,.18);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--mc-muted); margin-top: .75rem; }
.form-status { color: var(--mc-blue); font-size: .88rem; font-weight: 600; margin-top: .75rem; }
.btn.is-busy { cursor: wait; opacity: .72; transform: none; }
.btn:disabled { cursor: not-allowed; }

.form-alert { padding: .9rem 1.1rem; border-radius: var(--mc-radius-sm); margin-bottom: 1.25rem; font-weight: 600; font-size: .95rem; }
.form-alert--ok { background: var(--mc-green-050); color: #10633a; border: 1px solid #bde9cf; }
.form-alert--err { background: #FDECEC; color: #b3261e; border: 1px solid #f6c9c6; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: var(--mc-grad-blue); color: #fff; border-radius: var(--mc-radius-lg); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; box-shadow: var(--mc-shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #D7E3FF; max-width: 54ch; margin-inline: auto; }
.cta-band .btn-row { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--mc-ink); color: #C7D0E0; padding: clamp(48px, 6vw, 72px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #C7D0E0; }
.site-footer a:hover { color: var(--mc-green-400); }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name b { color: #fff; }
.footer-brand p { color: #9AA6BD; margin-top: 1rem; font-size: .95rem; max-width: 34ch; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; font-size: .95rem; }
.footer-contact { display: grid; gap: .7rem; font-size: .95rem; }
.footer-contact .row { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; fill: var(--mc-green-400); flex: 0 0 auto; margin-top: .2rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); }
.footer-social a:hover { background: var(--mc-green); }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding: 1.25rem 0; text-align: center; font-size: .85rem; color: #8B97AE; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-2 { margin-top: 1.25rem; }
.stack-cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; color: var(--mc-blue); padding: .6rem 1rem; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__card { order: 2; }
	.grid-3 { grid-template-columns: repeat(2, 1fr); }
	.grid-4 { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
	.container { padding-inline: 16px; }
	.header-inner { gap: .75rem; }
	.brand__tag { display: none; }
	.nav-toggle { display: inline-flex; }
	.primary-nav {
		position: fixed; inset: 72px 0 auto 0; margin: 0;
		background: #fff; border-bottom: 1px solid var(--mc-line);
		max-height: 0; overflow: hidden; transition: max-height .25s ease; box-shadow: var(--mc-shadow);
	}
	body.nav-open .primary-nav { max-height: 80vh; }
	.primary-nav ul { flex-direction: column; align-items: stretch; padding: .75rem; gap: .25rem; }
	.primary-nav a { padding: .85rem 1rem; }
	.header-cta { display: none; }
	.contact-grid { grid-template-columns: 1fr; }
	.catalog-cat__head { align-items: flex-start; }
	.catalog-cat__head h2 { font-size: 1.4rem; }
}
@media (max-width: 640px) {
	.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
	.form-row.two { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.hero__cta .btn, .cta-band .btn { width: 100%; justify-content: center; }
	.section { padding-block: 42px; }
	.page-hero { padding-block: 42px; }
	.hero__card { padding: 1.15rem; }
	.hero-stats { gap: .6rem; }
	.hero-stat { padding: .75rem; }
	.catalog-cat__head { gap: .7rem; }
	.catalog-cat__head .icon-badge { flex: 0 0 44px; width: 44px; height: 44px; }
	.catalog-cat__head .icon-badge svg { width: 22px; height: 22px; }
	.product-filters { grid-template-columns: 1fr; gap: .75rem; padding: 1rem; }
	.product-filters .btn { width: 100%; justify-content: center; }
	.filter-clear { justify-self: center; }
	.product-card__body { padding: 1rem; }
	.product-card__foot { align-items: flex-start; flex-direction: column; }
	.btn { white-space: normal; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
	* { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
