:root {
    --navy: #0f3460;
    --navy-dark: #0a2540;
    --coral: #e94560;
    --coral-dark: #d13a52;
    --bg: #f4f6f9;
    --white: #ffffff;
    --text: #1a1a2e;
    --muted: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 4px 24px rgba(15, 52, 96, 0.08);
    --radius: 12px;
}

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

/* Top bar */
.topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    padding: 0.45rem 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.topbar-promo { color: #fcd34d; font-weight: 500; }

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 0.9rem 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
}
.logo img { width: 42px; height: 42px; object-fit: contain; }
.logo span { color: var(--coral); }

.search-form {
    display: flex;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}
.search-form input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px 0 0 8px;
    font-size: 0.9rem;
    outline: none;
}
.search-form input:focus { border-color: var(--navy); }
.search-form button {
    background: var(--navy);
    color: #fff;
    padding: 0 1.1rem;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.68rem;
    color: var(--muted);
    gap: 0.15rem;
}
.header-action svg { width: 22px; height: 22px; color: var(--navy); }
.cart-count {
    background: var(--coral);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -4px;
    right: -8px;
}
.cart-wrap { position: relative; }

.main-nav {
    border-top: 1px solid var(--border);
    background: #fafbfc;
}
.main-nav .container {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}
.main-nav a {
    white-space: nowrap;
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
    border-radius: 6px;
    color: var(--text);
}
.main-nav a:hover, .main-nav a.active {
    background: var(--navy);
    color: #fff;
}

.menu-toggle { display: none; }

/* Hero */
.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/hero-banner.png') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,37,64,0.92) 0%, rgba(15,52,96,0.75) 45%, rgba(15,52,96,0.35) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 560px;
    padding: 3rem 0;
}
.hero-tag {
    display: inline-block;
    background: var(--coral);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline {
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }

/* Trust bar */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.82rem;
}
.trust-icon {
    width: 40px;
    height: 40px;
    background: #eef2ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.trust-item strong { display: block; font-size: 0.85rem; }

/* Sections */
section { padding: 3rem 0; }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.section-head h2 {
    font-size: 1.5rem;
    color: var(--navy);
}
.section-head p { color: var(--muted); font-size: 0.9rem; }
.link-more { color: var(--coral); font-size: 0.88rem; font-weight: 600; }

/* Categories */
.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s;
}
.category-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.category-card img { height: 120px; width: 100%; object-fit: cover; }
.category-card .cat-body {
    padding: 0.9rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.88rem;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); }
.product-img-wrap {
    position: relative;
    background: #f8fafc;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--coral);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}
.product-badge.sale { background: #16a34a; }
.product-badge.new { background: #2563eb; }
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-sku { font-size: 0.7rem; color: var(--muted); margin-bottom: 0.25rem; }
.product-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    line-height: 1.35;
}
.product-desc {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
    flex: 1;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
}
.stars { color: #f59e0b; letter-spacing: -1px; }
.rating-count { color: var(--muted); }
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
}
.price-block .price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
}
.price-block .old-price {
    font-size: 0.78rem;
    color: #9ca3af;
    text-decoration: line-through;
}
.add-cart {
    background: var(--navy);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}
.add-cart:hover { background: var(--navy-dark); }

/* Promo */
.promo-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #1e4a7a 100%);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.promo-banner h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.promo-banner p { opacity: 0.85; font-size: 0.9rem; }
.promo-code {
    background: rgba(255,255,255,0.15);
    border: 1px dashed rgba(255,255,255,0.5);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 0.1em;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-img img { width: 100%; height: 340px; object-fit: cover; }
.about-text h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 0.9rem; font-size: 0.92rem; }
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.stat {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
}
.stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--coral);
}
.stat span { font-size: 0.78rem; color: var(--muted); }

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.review-meta strong { display: block; font-size: 0.88rem; }
.review-meta span { font-size: 0.75rem; color: var(--muted); }
.review-text { font-size: 0.85rem; color: #374151; line-height: 1.55; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 0.6rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy);
}
.faq-question::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--coral);
    transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}
.faq-item.open .faq-answer { display: block; }

/* Newsletter */
.newsletter {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.newsletter h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.3rem; }
.newsletter p { font-size: 0.88rem; color: var(--muted); }
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 420px;
}
.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
}
.newsletter-form button {
    background: var(--coral);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
}
.newsletter-form button:hover { background: var(--coral-dark); }

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    padding: 3rem 0 1.5rem;
    font-size: 0.85rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 0.75rem; }
.footer-brand p { line-height: 1.7; font-size: 0.82rem; }
.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
}
.footer-col a {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
}
.pay-icons { display: flex; gap: 0.5rem; }
.pay-icon {
    background: rgba(255,255,255,0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.72rem;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--navy);
    color: #fff;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    font-size: 0.88rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transform: translateY(120%);
    transition: transform 0.3s;
    z-index: 200;
}
.toast.show { transform: translateY(0); }

body.no-scroll { overflow: hidden; }

.filter-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1rem;
}
.no-results {
    text-align: center;
    padding: 2rem;
    color: var(--muted);
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.product-card.hidden { display: none; }

.wishlist-btn.active { color: var(--coral); }

.product-img-wrap.product-open,
.product-card h3 { cursor: pointer; }

#promo-copy, #promo-code-btn { cursor: pointer; }
#promo-code-btn:hover { background: rgba(255,255,255,0.25); }

.link-more {
    background: none;
    border: none;
    color: var(--coral);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.footer-col button.footer-info {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    text-align: left;
    padding: 0;
    transition: color 0.15s;
}
.footer-col button.footer-info:hover { color: #fff; }
.footer-hours {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}

/* Modal */
.modal-overlay, .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.55);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.drawer-overlay { justify-content: flex-end; }
.modal-overlay[hidden], .drawer-overlay[hidden] { display: none; }

.modal {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.modal-wide { max-width: 720px; }
.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg);
    font-size: 1.3rem;
    line-height: 1;
    color: var(--muted);
}
.modal-close:hover { background: var(--border); }
.modal h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 1rem; padding-right: 2rem; }
.modal-muted { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; }
.modal-form { display: flex; flex-direction: column; gap: 0.65rem; }
.modal-form input, .modal-form textarea {
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
}
.modal-form input:focus, .modal-form textarea:focus {
    outline: none;
    border-color: var(--navy);
}
.modal-full { width: 100%; margin-top: 0.5rem; }
.modal-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }
.btn-outline-dark {
    border: 2px solid var(--border);
    color: var(--text);
    padding: 0.75rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
}
.btn-outline-dark:hover { border-color: var(--navy); }

.tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.tab {
    flex: 1;
    padding: 0.55rem;
    border-radius: 8px;
    background: var(--bg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
}
.tab.active { background: var(--navy); color: #fff; }

.modal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1rem 0;
}
.modal-stats div {
    background: var(--bg);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}
.modal-stats strong { display: block; font-size: 1.4rem; color: var(--coral); }
.modal-stats span { font-size: 0.78rem; color: var(--muted); }

.product-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
.product-modal img {
    border-radius: 10px;
    border: 1px solid var(--border);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.product-modal-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0.75rem 0;
}
.checkout-total {
    padding: 0.75rem;
    background: var(--bg);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Cart drawer */
.drawer {
    background: var(--white);
    width: 100%;
    max-width: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.drawer-head h3 { font-size: 1.15rem; color: var(--navy); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1rem; }
.drawer-foot {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    background: #fafbfc;
}
.drawer-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--muted);
}
.drawer-checkout { width: 100%; margin-top: 0.75rem; }

.cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.cart-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 0.85rem; margin-bottom: 0.2rem; }
.cart-item-price { font-size: 0.82rem; color: var(--navy); font-weight: 700; }
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
}
.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 1rem;
    line-height: 1;
}
.qty-btn:hover { background: var(--border); }
.cart-item-remove {
    color: var(--muted);
    font-size: 1.3rem;
    padding: 0.2rem;
}
.cart-item-remove:hover { color: var(--coral); }

.cart-promo {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.cart-promo input {
    flex: 1;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
}
.cart-promo button {
    background: var(--navy);
    color: #fff;
    padding: 0.55rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.cart-total-row strong { color: var(--navy); font-size: 1.15rem; }

/* Responsive */
@media (max-width: 960px) {
    .products-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .categories { grid-template-columns: repeat(2, 1fr); }
    .trust-items { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .header-inner { grid-template-columns: 1fr auto; }
    .search-form { display: none; grid-column: 1 / -1; order: 3; }
    .menu-toggle { display: block; font-size: 1.4rem; }
    .main-nav { display: none; }
    .main-nav.open { display: block; }
    .main-nav .container { flex-direction: column; }
    .products-grid, .reviews-grid, .categories, .trust-items, .stats-row, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero { min-height: 340px; }
    .promo-banner { text-align: center; justify-content: center; }
    .product-modal { grid-template-columns: 1fr; }
}
