/* ========================== */
/* GLOBAL RESET & BASE STYLES */
/* ========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #253a2d;
    padding-top: 140px; /* space for fixed top-bar + header */
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ========================== */
/* TOP BAR */
/* ========================== */

.top-bar {
    background: #2e3b31;
    color: white;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* ========================== */
/* MAIN HEADER */
/* ========================== */

.header {
    background: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
    position: fixed;
    top: 35px;  /* height of the top-bar */
    left: 0;
    width: 100%;
    z-index: 9998;
}

.logo h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #253a2d;
}

.logo p {
    margin: 0;
    font-size: 13px;
    color: #c38b30;
}

/* NAVBAR */

.navbar a {
    margin: 0 16px;
    color: #253a2d;
    font-size: 16px;
    transition: 0.2s ease;
}

.navbar a:hover {
    color: #c38b30;
}

.cart-icon {
    font-size: 24px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* hamburger icon – hidden on desktop, shown on mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ========================== */
/* HERO SECTION */
/* ========================== */

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    background: linear-gradient(to right, #f6f4ef, #ffffff);
}

.hero-left {
    width: 55%;
}

.hero-right {
    width: 45%;
    text-align: center;
}

.hero-img {
    width: 75%;
}

/* HERO BADGES */

.hero-badges .badge {
    display: inline-block;
    background: #253a2d;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-right: 6px;
}

/* TEXT */

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0 15px;
}

.hero-subtext {
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-desc {
    font-size: 17px;
    margin-bottom: 25px;
}

/* BUTTONS */

.btn-primary {
    background: #d18619;
    color: white;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 600;
    margin-right: 10px;
    display: inline-block;
}

.btn-secondary {
    background: #f7f7f7;
    border: 1px solid #dcdcdc;
    padding: 14px 22px;
    border-radius: 6px;
    color: #253a2d;
    font-weight: 600;
    display: inline-block;
}

.hero-features span {
    margin-right: 20px;
    font-size: 15px;
    color: #253a2d;
}

/* ========================== */
/* 4 FEATURES SECTION */
/* ========================== */

.features-section {
    display: flex;
    justify-content: space-around;
    padding: 50px 40px;
    text-align: center;
}

.feature-box {
    width: 22%;
}

.feature-box .icon {
    font-size: 40px;
}

.feature-box h4 {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 700;
}

.feature-box p {
    color: #666;
}

/* ========================== */
/* PRODUCTS SECTION (HOME) */
/* ========================== */

.products-section {
    padding: 60px 40px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background: white;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0px 6px 16px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
    height: 450px;
    position: relative;
    overflow: visible;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 260px;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.price {
    font-size: 18px;
    color: #d18619;
}

.price .old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.btn-viewall {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 20px;
    background: #253a2d;
    color: white;
    border-radius: 6px;
}

/* BADGES (HOME + SHOP) */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 4px 10px;
    color: white;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
}

.badge.green { background: #2f4f39; }
.badge.yellow { background: #d18d00; }
.badge.red { background: #d13333; }

/* ========================== */
/* WHY CHOOSE US */
/* ========================== */

.why-section {
    padding: 70px 40px;
    background: #f8f8f5;
    text-align: center;
}

.why-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.why-sub {
    color: #555;
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}

.why-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.why-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 32%;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ========================== */
/* TESTIMONIALS */
/* ========================== */

.testimonial-section {
    padding: 70px 40px;
    background: white;
    text-align: center;
}

.testimonial-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.testimonial-card p {
    margin: 12px 0;
}

/* ========================== */
/* SUBSCRIBE SECTION */
/* ========================== */

.subscribe-section {
    background: #2e3b31;
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.subscribe-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.subscribe-buttons {
    margin-top: 25px;
}

.subscribe-buttons a {
    margin: 0 10px;
}

/* ========================== */
/* FOOTER */
/* ========================== */

.footer {
    background: #2B3A2F;
    padding: 60px 40px;
    border-top: 1px solid #e7e7e7;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    color: #D88A00;
}

.footer-col p,
.footer-col a {
    color: #ffffff;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.social-icons span {
    margin-right: 10px;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    color: #99A193;
    border-top: 1px solid #e7e7e7;
}

/* ========================= */
/* CONTACT PAGE COMMON */
/* ========================= */

.contact-card {
    background:white;
    padding:30px;
    border-radius:12px;
    width:30%;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
    text-align:center;
}

.contact-card .icon {
    font-size:40px;
    margin-bottom:10px;
}

.contact-info-box {
    background:white;
    padding:25px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.faq-card {
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
    text-align:left;
}

/* CONTACT FORM WRAPPER */
.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* INPUT FIELDS */
.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    padding: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 18px;
    outline: none;
    transition: 0.2s ease;
    background: #f9f9f9;
}

/* FOCUS EFFECT */
.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #d18619;
    background: white;
}

/* FILE FIELD */
.contact-form-box input[type="file"] {
    padding: 8px;
    background: white;
}

/* FORM 2-COLUMN ROW */
.form-row {
    display: flex;
    gap: 20px;
}

/* BUTTON FIX */
.contact-submit-btn {
    width: 100%;
    padding: 14px;
    background: #d18619;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s ease;
}

.contact-submit-btn:hover {
    opacity: 0.9;
}

/* ========================= */
/* CART PAGE DESIGN */
/* ========================= */

.cart-wrapper {
    padding: 40px;
    display: flex;
    gap: 40px;
}

.cart-items {
    width: 65%;
}

.cart-card {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.cart-img-box img {
    width: 120px;
    border-radius: 10px;
}

.cart-info h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.qty-box {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f1f1f1;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.qty-number {
    padding: 0 12px;
    font-size: 16px;
}

.cart-right {
    margin-left: auto;
    text-align: right;
}

.cart-right .price {
    font-size: 20px;
    color: #d18619;
    margin-bottom: 10px;
}

.delete {
    font-size: 22px;
    color: red;
}

.continue-btn {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 20px;
    border-radius: 8px;
    background: #f1f1f1;
    color: #333;
}

.order-box {
    width: 35%;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.order-box h3 {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 22px;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: #d18619;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    margin: 20px 0;
}

.payment-info {
    margin-top: 10px;
    font-weight: 600;
}

.payment-types {
    color: #666;
    font-size: 14px;
}

/* ========================= */
/* SHOP PAGE DESIGN */
/* ========================= */

.shop-container {
    display: flex;
    padding: 40px;
    gap: 40px;
}

/* SIDEBAR */
.filter-box {
    width: 260px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    height: fit-content;
}

.filter-label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-btn {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    background: #d18619;
    color: white;
    border: none;
    border-radius: 8px;
}

.clear-filters {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #d13333;
    font-weight: 600;
}

/* PRODUCT AREA */
.product-area {
    flex: 1;
}

/* SORTING */
.sorting-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sort-select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* PRODUCT GRID (SHOP) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* PRODUCT CARD (SHOP) – reuses .product-card base */

.product-img {
    height: 240px;
    object-fit: contain;
    margin-bottom: 10px;
}

.add-btn {
    display: inline-block;
    background: #d18619;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 10px;
}

/* ========================== */
/* RESPONSIVE DESIGN */
/* ========================== */

/* MOBILE FIRST: max 768px */
@media (max-width: 768px) {

    /* spacing for fixed header */
    body {
        padding-top: 160px;
    }

    /* top bar */
    .top-bar {
        padding: 6px 12px;
        font-size: 12px;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    /* header like Figma: logo left, cart + menu right, no nav text */
    .header {
        padding: 10px 14px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        top: 52px; /* just under top bar */
    }

    .navbar {
        display: none;  /* hide text nav on mobile */
    }

    .menu-toggle {
        display: block;  /* show hamburger */
    }

    .logo h2 {
        font-size: 22px;
    }

    .logo p {
        font-size: 11px;
    }

    /* HERO SECTION */
    .hero-section {
        flex-direction: column;
        padding: 30px 16px;
        text-align: center;
    }

    .hero-left, .hero-right {
        width: 100%;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-subtext,
    .hero-desc {
        font-size: 14px;
    }

    .hero-img {
        width: 80%;
        margin: 20px auto 0;
    }

    .hero-features span {
        display: block;
        margin: 4px 0;
    }

    /* 4 FEATURES – 2x2 grid */
    .features-section {
        padding: 35px 16px;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        text-align: center;
    }

    .feature-box {
        width: 100%;
    }

    .feature-box h4 {
        font-size: 14px;
    }

    .feature-box p {
        font-size: 12px;
    }

    /* HOME PRODUCTS SECTION */
    .products-section {
        padding: 40px 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-card {
        height: auto;
        padding: 20px;
    }

    .product-card img {
        height: 210px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* WHY CHOOSE US */
    .why-section {
        padding: 40px 16px;
    }

    .why-grid {
        flex-direction: column;
        gap: 20px;
    }

    .why-card {
        width: 100%;
    }

    /* TESTIMONIALS */
    .testimonial-section {
        padding: 40px 16px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* SUBSCRIBE */
    .subscribe-section {
        padding: 40px 16px;
    }

    /* FOOTER */
    .footer {
        padding: 40px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* CONTACT PAGE FIXES */
    .contact-card {
        width: 100%;
    }

    .contact-form-box {
        width: 100% !important;
    }

    .form-row {
        flex-direction: column;
    }

    /* sections you built with inline style display:flex (about/contact) */
    section[style*="display:flex"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* CART PAGE */
    .cart-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .cart-items, .order-box {
        width: 100%;
    }

    /* SHOP PAGE */
    .shop-container {
        flex-direction: column;
        padding: 20px;
    }

    .filter-box {
        width: 100%;
        order: 2;
    }

    .product-area {
        order: 1;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* TABLET: 769px–1024px */
@media (min-width: 769px) and (max-width: 1024px) {

    .hero-title {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        flex-direction: column;
        gap: 25px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-container {
        padding: 30px;
        gap: 30px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-wrapper {
        padding: 30px;
        gap: 30px;
    }
}


/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    top: 90px; /* slightly below header */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 20px;
    z-index: 9997;
    flex-direction: column;
}

.mobile-nav a {
    padding: 12px 0;
    font-size: 16px;
    color: #253a2d;
    border-bottom: 1px solid #f1f1f1;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}


.bulk-form-wrapper {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.form-section-title {
    margin: 25px 0 15px;
    font-size: 18px;
    font-weight: 700;
    color: #253a2d;
}

.form-row-2 {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.form-row-2 div {
    width: 50%;
}

.form-row-1 {
    margin-bottom: 18px;
}

.bulk-form-wrapper label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #253a2d;
}

.bulk-form-wrapper input,
.bulk-form-wrapper textarea,
.bulk-form-wrapper select {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #fafafa;
}

.bulk-form-wrapper input:focus,
.bulk-form-wrapper select:focus,
.bulk-form-wrapper textarea:focus {
    border-color: #d18619;
    background: white;
}

.bulk-submit-btn {
    width: 100%;
    padding: 14px;
    background: #d18619;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
}

@media(max-width: 768px) {
    .form-row-2 {
        flex-direction: column;
    }

    .form-row-2 div {
        width: 100%;
    }

    .bulk-form-wrapper {
        padding: 25px;
    }
}


/* ============================== */
/* BULK PRICING SECTION - FIGMA   */
/* ============================== */

.bulk-pricing-section {
    padding: 70px 20px;
    background: #f4f4ef;
    text-align: center;
}

.bulk-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.bulk-tier-wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.bulk-card {
    background: white;
    width: 250px;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

.bulk-card:hover {
    transform: translateY(-5px);
}

.bulk-badge {
    display: inline-block;
    background: #fff5e5;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    color: #b47c00;
    margin-bottom: 12px;
}

.bulk-badge.custom {
    background: #eef5ff;
    color: #004c99;
}

.bulk-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #253a2d;
}

.bulk-price {
    font-size: 20px;
    font-weight: 700;
    color: #d18619;
    margin-bottom: 6px;
}

.bulk-price.negotiable {
    color: #d18619;
}

.bulk-hint {
    font-size: 13px;
    color: #777;
}

.bulk-note {
    font-size: 13px;
    color: #777;
    margin-top: 30px;
}

/* MOBILE FIXES */
@media(max-width: 768px) {
    .bulk-title {
        font-size: 26px;
    }

    .bulk-card {
        width: 100%;
        max-width: 320px;
        padding: 30px 20px;
    }
}


/* ========================= */
/* CHECKOUT PAGE LAYOUT      */
/* ========================= */

.checkout-main {
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.checkout-left {
    flex: 2;
}

.checkout-right {
    flex: 1;
}

.checkout-card,
.checkout-summary-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.checkout-card h3,
.checkout-summary-card h3 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
}

.checkout-row {
    display: flex;
    gap: 16px;
}

.checkout-field {
    margin-bottom: 14px;
}

.checkout-field.full {
    width: 100%;
}

.checkout-field.half {
    width: 50%;
}

.checkout-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #555;
}

.checkout-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    font-size: 14px;
}

.checkout-input:focus {
    border-color: #d18619;
    outline: none;
    background: #fff;
}

.checkout-pay-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 8px;
    background: #fafafa;
    font-size: 14px;
}

.checkout-pay-option input {
    margin-top: 0;
}

/* SUMMARY SIDE */
.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.sum-name {
    font-size: 14px;
    font-weight: 600;
}

.sum-qty {
    font-size: 13px;
    color: #777;
}

.sum-line {
    font-size: 14px;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.summary-row.total {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 800;
}

.place-order-btn {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    background: #d18619;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

.place-order-btn:hover {
    opacity: 0.92;
}

.checkout-terms {
    font-size: 11px;
    color: #888;
    margin-top: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
    .checkout-main {
        padding: 20px;
        flex-direction: column;
    }

    .checkout-left,
    .checkout-right {
        width: 100%;
    }

    .checkout-row {
        flex-direction: column;
    }

    .checkout-field.half {
        width: 100%;
    }
}
