/* ============================================
   全局重置 & 基础样式
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: #f5f5f5;
    color: #333;
    padding-bottom: 100px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   Toast 提示
   ============================================ */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    z-index: 9999;
    max-width: 80%;
    text-align: center;
    display: none;
    pointer-events: none;
}
.toast.success { background: rgba(82, 196, 26, 0.9); }
.toast.error { background: rgba(255, 77, 79, 0.9); }

/* ============================================
   顶部 Header
   ============================================ */
.header {
    background: linear-gradient(135deg, #ff6b00, #ff8c3a);
    padding: 12px 16px 16px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-top .location {
    color: white;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    cursor: pointer;
}
.header-top .location .arrow { font-size: 10px; }
.header-top .search-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    cursor: pointer;
    backdrop-filter: blur(4px);
}
.header-top .search-box span { opacity: 0.8; }
.header-top .app-btn {
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    cursor: pointer;
    white-space: nowrap;
}
.notice-bar {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 12px;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    backdrop-filter: blur(4px);
}
.notice-bar .highlight { color: #ffe066; font-weight: 600; }

/* ============================================
   分类导航（横向滑动）
   ============================================ */
.category-scroll {
    background: white;
    padding: 12px 0 8px;
    border-bottom: 1px solid #f0f0f0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar { display: none; }
.category-scroll .cat-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0 14px;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    transition: color 0.2s;
    flex-shrink: 0;
}
.category-scroll .cat-item .icon { font-size: 24px; margin-bottom: 2px; }
.category-scroll .cat-item.active { color: #ff6b00; font-weight: 600; }
.category-scroll .cat-item.app-download {
    background: linear-gradient(135deg, #ff6b00, #e05a00);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    margin: 0 10px;
    font-weight: 600;
}
.category-scroll .cat-item.app-download .icon { font-size: 18px; }

/* ============================================
   限时抢购
   ============================================ */
.flash-section {
    background: white;
    margin: 10px 12px;
    border-radius: 12px;
    padding: 14px 14px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.flash-section .flash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.flash-section .flash-header .title {
    font-size: 16px;
    font-weight: 700;
    color: #ff4d4f;
}
.flash-section .flash-header .title .fire { font-size: 18px; }
.flash-section .flash-header .more {
    font-size: 12px;
    color: #999;
    cursor: pointer;
}
.flash-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.flash-scroll::-webkit-scrollbar { display: none; }
.flash-item {
    flex-shrink: 0;
    width: 110px;
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 8px;
}
.flash-item .img {
    width: 100%;
    height: 100px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ccc;
    overflow: hidden;
}
.flash-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flash-item .name {
    font-size: 12px;
    color: #333;
    margin: 4px 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.flash-item .price {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b00;
    margin-top: 2px;
}
.flash-item .old-price {
    font-size: 11px;
    color: #bbb;
    text-decoration: line-through;
}

/* ============================================
   商品列表
   ============================================ */
.product-section {
    margin: 0 12px 12px;
}
.product-section .section-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    padding: 14px 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-section .section-title .tag {
    font-size: 11px;
    background: #ff6b00;
    color: white;
    padding: 1px 10px;
    border-radius: 10px;
    font-weight: 400;
}
.product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-item {
    background: white;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.product-item .img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ccc;
    flex-shrink: 0;
    overflow: hidden;
}
.product-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-item .info {
    flex: 1;
    min-width: 0;
}
.product-item .info .name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-item .info .desc {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-item .info .price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 4px;
}
.product-item .info .price-wrap .price {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b00;
}
.product-item .info .price-wrap .old {
    font-size: 12px;
    color: #bbb;
    text-decoration: line-through;
}
.product-item .btn-add {
    background: #ff6b00;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.product-item .btn-add:active { background: #e05a00; }
.product-item .btn-add:disabled { background: #ccc; cursor: not-allowed; }

/* ============================================
   分页
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
}
.pagination button {
    padding: 6px 14px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}
.pagination button.active {
    background: #ff6b00;
    color: white;
    border-color: #ff6b00;
}
.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.pagination button:hover:not(:disabled) {
    border-color: #ff6b00;
}

/* ============================================
   加载 & 空状态
   ============================================ */
.loading {
    text-align: center;
    padding: 40px 0;
    color: #999;
    font-size: 14px;
}
.loading .spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #f0f0f0;
    border-top-color: #ff6b00;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state {
    text-align: center;
    padding: 40px 0;
    color: #bbb;
}
.empty-state .icon { font-size: 48px; display: block; margin-bottom: 8px; }

/* ============================================
   底部导航
   ============================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    padding: 6px 0 12px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
    border-top: 1px solid #f0f0f0;
    z-index: 999;
}
.bottom-nav .nav-item {
    flex: 1;
    text-align: center;
    cursor: pointer;
    color: #999;
    font-size: 10px;
    position: relative;
}
.bottom-nav .nav-item.active { color: #ff6b00; }
.bottom-nav .nav-item .nav-icon { font-size: 22px; display: block; }
.bottom-nav .nav-item .nav-text { font-size: 10px; margin-top: 1px; }
.bottom-nav .nav-item .badge {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(calc(50% + 18px));
    background: #ff4d4f;
    color: white;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 16px;
}

/* ============================================
   底部页脚
   ============================================ */
.footer {
    position: fixed;
    bottom: 56px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 6px 12px;
    font-size: 10px;
    color: #bbb;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-top: 1px solid #f0f0f0;
    z-index: 99;
}
.footer .company { color: #888; }
.footer .icp { color: #ccc; margin-left: 8px; }

/* ============================================
   弹窗（登录/注册/隐私政策）
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s;
}
.modal-overlay.show { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-box {
    background: white;
    border-radius: 20px;
    padding: 32px 24px 24px;
    width: 92%;
    max-width: 380px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s;
    position: relative;
}
.modal-box .close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    background: none;
    border: none;
}
.modal-box .close-btn:hover { color: #666; }
.modal-box .modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b00;
    text-align: center;
    margin-bottom: 16px;
}
.modal-box .input-group { margin-bottom: 14px; text-align: left; }
.modal-box .input-group label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 4px;
}
.modal-box .input-group input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}
.modal-box .input-group input:focus { border-color: #ff6b00; }
.modal-box .input-group .error-msg {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}
.modal-box .agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin: 12px 0 16px;
    text-align: left;
}
.modal-box .agreement input {
    width: 18px;
    height: 18px;
    accent-color: #ff6b00;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}
.modal-box .agreement .privacy {
    color: #ff6b00;
    cursor: pointer;
    font-weight: 500;
}
.modal-box .agreement .privacy:hover { text-decoration: underline; }
.modal-box .btn-submit {
    width: 100%;
    padding: 14px;
    background: #ff6b00;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.modal-box .btn-submit:hover { background: #e05a00; }
.modal-box .btn-submit:disabled { background: #ccc; cursor: not-allowed; }
.modal-box .switch-link {
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
    color: #888;
}
.modal-box .switch-link span {
    color: #ff6b00;
    cursor: pointer;
    font-weight: 500;
}
.modal-box .switch-link span:hover { text-decoration: underline; }

/* 隐私政策弹窗 */
.privacy-content {
    text-align: left;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    padding: 6px 0;
}
.privacy-content .highlight { color: #ff6b00; font-weight: 600; }

/* ============================================
   响应式
   ============================================ */
@media (max-width: 400px) {
    .flash-item { width: 90px; }
    .flash-item .img { height: 80px; font-size: 24px; }
    .product-item .img { width: 64px; height: 64px; font-size: 22px; }
    .product-item .info .name { font-size: 13px; }
    .product-item .info .price-wrap .price { font-size: 17px; }
    .product-item .btn-add { font-size: 11px; padding: 4px 12px; }
}

/* ============================================
   商品网格（三列）
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.product-grid .product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}

.product-grid .product-card .img {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ccc;
    overflow: hidden;
}

.product-grid .product-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-grid .product-card .info {
    padding: 8px 10px 12px;
}

.product-grid .product-card .name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-grid .product-card .desc {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-grid .product-card .price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 4px;
}

.product-grid .product-card .price-wrap .price {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b00;
}

.product-grid .product-card .price-wrap .old {
    font-size: 11px;
    color: #bbb;
    text-decoration: line-through;
}

.product-grid .product-card .btn-add {
    width: 100%;
    margin-top: 8px;
    padding: 6px 0;
    background: #ff6b00;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.product-grid .product-card .btn-add:active {
    background: #e05a00;
}

/* ============================================
   限时抢购 - 抢购按钮
   ============================================ */
.flash-item .flash-buy {
    display: block;
    width: 80%;
    margin: 6px auto 0;
    padding: 4px 0;
    background: #ff4d4f;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.flash-item .flash-buy:active {
    background: #d9363e;
}

/* ============================================
   响应式调整
   ============================================ */
@media (max-width: 480px) {
    .product-grid {
        gap: 8px;
    }
    .product-grid .product-card .name {
        font-size: 12px;
    }
    .product-grid .product-card .price-wrap .price {
        font-size: 14px;
    }
    .product-grid .product-card .btn-add {
        font-size: 12px;
        padding: 5px 0;
    }
    .flash-item {
        width: 100px;
    }
    .flash-item .img {
        height: 80px;
        font-size: 24px;
    }
}

/* ============================================
   分类切换 - 过渡动画
   ============================================ */
.flash-section {
    transition: opacity 0.3s ease;
}

.flash-section.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* 分类模式下标题样式 */
#productSectionTitle {
    font-size: 18px;
}

/* 加载更多提示 */
#loadMoreTip {
    color: #999;
    font-size: 13px;
    text-align: center;
    padding: 20px 0 30px;
}

/* Toast 错误提示 */
.toast.error {
    background: #ff4d4f;
}

.toast.success {
    background: #52c41a;
}

/* ============================================
   会员弹窗样式
   ============================================ */
#memberModal .modal-box {
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
}

#memberModal .input-group {
    margin-bottom: 14px;
}

#memberModal .input-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

#memberModal .input-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

#memberModal .input-group input:focus {
    border-color: #ff6b00;
    outline: none;
}

#memberModal .btn-submit {
    width: 100%;
    padding: 12px;
    background: #ff6b00;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

#memberModal .btn-submit:hover {
    background: #e55d00;
}

#memberModal .switch-link {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-top: 12px;
}

#memberModal .switch-link span {
    color: #ff6b00;
    font-weight: 600;
    cursor: pointer;
}

#memberModal .agreement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin: 8px 0 14px;
}

#memberModal .agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff6b00;
    cursor: pointer;
}

#memberModal .agreement .privacy {
    color: #ff6b00;
    cursor: pointer;
    text-decoration: underline;
}

#memberModal .close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
}

#memberModal .close-btn:hover {
    color: #333;
}

/* 会员中心内样式 */
#memberCenter .func-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}

#memberCenter .func-item:hover {
    background: #fafafa;
}

/* 充值按钮动画 */
#memberModal .recharge-btn {
    transition: transform 0.2s;
}

#memberModal .recharge-btn:active {
    transform: scale(0.96);
}

/* 会员弹窗滚动条美化 */
#memberModal .modal-box::-webkit-scrollbar {
    width: 4px;
}

#memberModal .modal-box::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

/* 支付二维码区域 */
#memberQrContainer .qr-placeholder {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

#memberQrContainer .qr-placeholder .qr-icon {
    font-size: 80px;
    display: block;
}

/* ============================================
   品牌 Banner（新增）
   ============================================ */
.brand-banner {
    position: relative;
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin: 0;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.brand-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 16px 20px;
}

.brand-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    animation: zoomInFromFar 1.2s ease-out forwards;
}

.brand-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
    opacity: 0.9;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    animation: zoomInFromFar 1.2s ease-out 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.brand-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.rotating-text {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #ffe066;
    text-shadow: 0 0 20px rgba(255, 224, 102, 0.3);
    animation: spinText 6s linear infinite;
}

.promo-text {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    background: rgba(255, 107, 0, 0.6);
    padding: 4px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    animation: breathe 2s ease-in-out infinite;
}

/* ===== 动画 ===== */
@keyframes zoomInFromFar {
    0% {
        font-size: 18px;
        opacity: 0;
        transform: scale(0.6) translateY(24px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    100% {
        font-size: 36px;
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes spinText {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes breathe {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.02); }
}

/* ===== 响应式适配 ===== */
@media (max-width: 640px) {
    .brand-banner {
        height: 180px;
    }
    .brand-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    .brand-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }
    .rotating-text {
        font-size: 15px;
    }
    .promo-text {
        font-size: 12px;
        padding: 3px 10px;
    }
    .brand-slogan {
        gap: 8px;
    }
    @keyframes zoomInFromFar {
        0% {
            font-size: 14px;
            opacity: 0;
            transform: scale(0.6) translateY(20px);
        }
        100% {
            font-size: 24px;
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
}

@media (max-width: 400px) {
    .brand-banner {
        height: 150px;
    }
    .brand-title {
        font-size: 20px;
    }
    .brand-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .rotating-text {
        font-size: 13px;
    }
    .promo-text {
        font-size: 10px;
        padding: 2px 8px;
    }
    .brand-slogan {
        gap: 6px;
    }
}