/* ==================== Reset & Variables ==================== */
:root {
    --tab3600-primary: #5a6e8a;
    --tab3600-primary-light: #7fdbff;
    --tab3600-secondary: #e74c3c;
    --tab3600-success: #2ecc71;
    --tab3600-warning: #f1c40f;
    --tab3600-border: #405b73;
    --tab3600-bg-dark: #2c3e50;
    --tab3600-bg-darker: #1e2a3a;
    --tab3600-bg-card: #2c3e50;
    --tab3600-text: #ecf0f1;
    --tab3600-text-light: #bdc3c7;
    --tab3600-text-muted: #95a5a6;
    --tab3600-radius: 12px;
    --tab3600-shadow: 0 4px 20px rgba(0,0,0,0.25);
    --tab3600-shadow-hover: 0 8px 35px rgba(0,0,0,0.35);
    --tab3600-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== Container ==================== */
.tab3600-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ==================== Breadcrumb ==================== */
.product-breadcrumb {
    margin-bottom: 25px;
    padding: 12px 20px;
    background: #1e2a3a;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #405b73;
}
.product-breadcrumb a { 
    color: var(--tab3600-primary-light); 
    text-decoration: none; 
}
.product-breadcrumb a:hover { 
    text-decoration: underline; 
    color: #7fdbff;
}
.product-breadcrumb .separator { 
    margin: 0 8px; 
    color: #7f8c8d; 
}
.product-breadcrumb .current { 
    color: var(--tab3600-text-light); 
}

/* ==================== Badges ==================== */
.product-badges { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 25px; 
    flex-wrap: wrap; 
}
.badge {
    display: inline-flex; 
    align-items: center; 
    padding: 6px 15px;
    border-radius: 20px; 
    font-size: 13px; 
    font-weight: bold;
}
.badge-special { 
    background: var(--tab3600-secondary); 
    color: white; 
}
.badge-discount { 
    background: #e74c3c; 
    color: white; 
}
.badge-preorder { 
    background: var(--tab3600-warning); 
    color: #1a1a2e; 
}

/* ==================== Product Main ==================== */
.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    background: var(--tab3600-bg-card);
    padding: 30px;
    border-radius: var(--tab3600-radius);
    box-shadow: var(--tab3600-shadow);
    overflow: visible;
    border: 1px solid #405b73;
}

/* ==================== Gallery ==================== */
.product-gallery {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.product-gallery .main-image {
    border-radius: var(--tab3600-radius);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1;
    background: #1e2a3a;
    position: relative;
    max-width: 100%;
    border: 1px solid #405b73;
}
.product-gallery .main-image img {
    width: 100%; 
    height: 100%; 
    object-fit: contain;
    transition: transform 0.3s;
    display: block;
}
.zoom-container { 
    cursor: crosshair; 
    overflow: hidden; 
}
.zoom-container img:hover { 
    transform: scale(1.5); 
}
.no-image {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    height: 100%; 
    color: var(--tab3600-text-muted); 
    font-size: 48px; 
    gap: 15px;
}
.no-image span { 
    font-size: 16px; 
}

.thumbnail-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
}
.thumbnail-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-wrap: nowrap;
    max-width: 100%;
}
.thumbnail-list::-webkit-scrollbar {
    display: none;
}
.thumbnail {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--tab3600-transition);
    flex-shrink: 0;
}
.thumbnail.active { 
    border-color: var(--tab3600-primary-light); 
    opacity: 1; 
}
.thumbnail:hover { 
    opacity: 0.9; 
    border-color: #7fdbff;
}
.thumbnail img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--tab3600-bg-card);
    color: var(--tab3600-text-light);
    border: 1px solid #405b73;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: var(--tab3600-transition);
    font-size: 16px;
}
.gallery-nav:hover {
    background: var(--tab3600-primary);
    color: white;
    border-color: var(--tab3600-primary);
}
.gallery-nav.prev { 
    left: -15px; 
}
.gallery-nav.next { 
    right: -15px; 
}

/* ==================== Product Info ==================== */
.product-info {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}
.product-title { 
    font-size: 28px; 
    font-weight: bold; 
    color: var(--tab3600-text); 
    margin: 0 0 15px; 
    line-height: 1.4; 
    word-wrap: break-word; 
}
.product-meta { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    margin-bottom: 20px; 
    font-size: 14px; 
    color: var(--tab3600-text-muted); 
}
.meta-item { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}
.stock-status.in_stock { 
    color: var(--tab3600-success); 
}
.stock-status.out_of_stock { 
    color: var(--tab3600-secondary); 
}
.stock-status.pre_order { 
    color: var(--tab3600-warning); 
}

/* ==================== Rating ==================== */
.product-rating { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 20px; 
}
.stars { 
    display: flex; 
    gap: 3px; 
    direction: ltr; 
}
.stars .star { 
    font-size: 22px; 
    color: #5a5a6e; 
    cursor: pointer; 
    transition: var(--tab3600-transition); 
}
.stars .star.active { 
    color: #f1c40f; 
    font-weight: 900; 
}
.rating-text { 
    font-size: 14px; 
    color: var(--tab3600-text-muted); 
}

/* ==================== Price ==================== */
.product-price-box {
    background: #1e2a3a;
    padding: 25px; 
    border-radius: var(--tab3600-radius); 
    margin-bottom: 25px; 
    border: 1px solid #405b73;
    box-sizing: border-box;
}
.product-price-box .price { 
    font-size: 32px; 
    font-weight: bold; 
    color: var(--tab3600-primary-light); 
}
.product-price-box .regular-price { 
    text-decoration: line-through; 
    color: var(--tab3600-text-muted); 
    font-size: 18px; 
    display: block; 
    margin-bottom: 5px; 
}
.product-price-box .sale-price { 
    font-size: 32px; 
    font-weight: bold; 
    color: var(--tab3600-secondary); 
    display: block; 
}
.discount-percent { 
    display: inline-block; 
    background: var(--tab3600-secondary); 
    color: white; 
    padding: 4px 12px; 
    border-radius: 4px; 
    font-size: 14px; 
    margin-top: 8px; 
}

/* ==================== Excerpt ==================== */
.product-excerpt { 
    color: var(--tab3600-text-light); 
    line-height: 1.8; 
    margin-bottom: 25px; 
    font-size: 15px; 
}

/* ==================== Buttons ==================== */
.product-actions { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 12px; 
}
.btn {
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 12px 22px;
    border-radius: 8px; 
    font-size: 15px; 
    font-weight: bold; 
    text-decoration: none;
    transition: var(--tab3600-transition); 
    cursor: pointer; 
    border: 2px solid transparent;
    max-width: 100%;
    white-space: nowrap;
}
.btn i { 
    font-size: 16px; 
}
.btn-inquiry { 
    background: var(--tab3600-primary); 
    color: white; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
}
.btn-inquiry:hover { 
    background: #3a4a5e; 
    transform: translateY(-2px); 
}
.btn-whatsapp { 
    background: #25D366; 
    color: white; 
}
.btn-whatsapp:hover { 
    background: #128C7E; 
    transform: translateY(-2px); 
}
.btn-custom { 
    color: white; 
}
.btn-custom:hover { 
    transform: translateY(-2px); 
    opacity: 0.9; 
}
.btn-wishlist, .btn-compare, .btn-share { 
    background: #1e2a3a; 
    border-color: #405b73; 
    color: var(--tab3600-text-light); 
}
.btn-wishlist:hover, .btn-compare:hover, .btn-share:hover { 
    border-color: var(--tab3600-primary-light); 
    color: var(--tab3600-primary-light); 
}
.btn-wishlist.active { 
    border-color: var(--tab3600-secondary); 
    color: var(--tab3600-secondary); 
    background: rgba(231, 76, 60, 0.15); 
}
.btn-wishlist.active i { 
    font-weight: 900; 
}

/* ==================== Accordion ==================== */
.product-sections { 
    margin-top: 40px; 
    background: var(--tab3600-bg-card); 
    border-radius: var(--tab3600-radius); 
    box-shadow: var(--tab3600-shadow); 
    overflow: hidden; 
    border: 1px solid #405b73;
}
.product-sections details { 
    border-bottom: 1px solid var(--tab3600-border); 
}
.product-sections details:last-child { 
    border-bottom: none; 
}
.product-sections summary {
    padding: 18px 25px; 
    cursor: pointer; 
    font-size: 16px; 
    font-weight: bold;
    background: #1e2a3a; 
    transition: var(--tab3600-transition); 
    list-style: none;
    display: flex; 
    align-items: center; 
    gap: 10px; 
    user-select: none;
    color: var(--tab3600-text);
}
.product-sections summary::-webkit-details-marker { 
    display: none; 
}
.product-sections summary::marker { 
    display: none; 
    content: ""; 
}
.product-sections summary::-moz-list-bullet { 
    list-style-type: none; 
}
.product-sections summary::after {
    content: '\f107'; 
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900;
    margin-right: auto; 
    font-size: 14px; 
    color: var(--tab3600-text-muted); 
    transition: transform 0.3s;
}
.product-sections details[open] summary::after { 
    transform: rotate(180deg); 
}
.product-sections summary:hover { 
    background: #253544; 
}
.product-sections details[open] summary { 
    background: #253544; 
    color: var(--tab3600-primary-light); 
}
.section-content { 
    padding: 25px; 
    line-height: 1.9; 
    word-wrap: break-word; 
    box-sizing: border-box; 
    color: var(--tab3600-text-light);
}
.section-content h1, .section-content h2, .section-content h3,
.section-content h4, .section-content h5, .section-content h6 {
    color: var(--tab3600-text);
}

/* ==================== Specs Table ==================== */
.specs-table { 
    width: 100%; 
    border-collapse: collapse; 
}
.specs-table tr { 
    border-bottom: 1px solid #405b73; 
}
.specs-table tr:last-child { 
    border-bottom: none; 
}
.specs-table td { 
    padding: 14px 16px; 
    word-break: break-word; 
}
.spec-key { 
    font-weight: bold; 
    color: var(--tab3600-text); 
    width: 30%; 
    background: #1e2a3a; 
    border-radius: 0 8px 8px 0; 
}
.specs-table td:not(.spec-key) {
    color: var(--tab3600-text-light);
}

/* ==================== Related Products ==================== */
.related-products { 
    margin-top: 50px; 
}
.section-title { 
    font-size: 24px; 
    font-weight: bold; 
    margin-bottom: 20px; 
    padding-bottom: 15px; 
    border-bottom: 3px solid var(--tab3600-primary-light); 
    display: inline-block; 
    color: var(--tab3600-text);
}
.related-products-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
}
.related-product-card {
    background: var(--tab3600-bg-card); 
    border-radius: var(--tab3600-radius); 
    overflow: hidden;
    box-shadow: var(--tab3600-shadow); 
    transition: var(--tab3600-transition);
    border: 1px solid #405b73;
}
.related-product-card:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--tab3600-shadow-hover); 
    border-color: #5a7a94;
}
.related-product-card img { 
    width: 100%; 
    aspect-ratio: 1; 
    object-fit: cover; 
}
.related-product-card h3 { 
    font-size: 14px; 
    margin: 12px 12px 5px; 
}
.related-product-card h3 a { 
    color: var(--tab3600-text); 
    text-decoration: none; 
}
.related-product-card h3 a:hover {
    color: var(--tab3600-primary-light);
}
.related-price { 
    padding: 0 12px 15px; 
    font-size: 16px; 
    font-weight: bold; 
    color: var(--tab3600-primary-light); 
}
.related-price del { 
    font-size: 13px; 
    color: var(--tab3600-text-muted); 
    font-weight: normal; 
}
.related-price ins { 
    text-decoration: none; 
    color: var(--tab3600-secondary); 
}

/* ==================== Product Card Grid ==================== */
.tab3600-products-grid { 
    display: grid; 
    gap: 25px; 
    margin: 30px 0; 
}
.product-card {
    background: var(--tab3600-bg-card); 
    border-radius: var(--tab3600-radius); 
    overflow: hidden;
    box-shadow: var(--tab3600-shadow); 
    transition: var(--tab3600-transition); 
    position: relative;
    border: 1px solid #405b73;
}
.product-card:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--tab3600-shadow-hover); 
    border-color: #5a7a94;
}
.card-badge {
    position: absolute; 
    top: 15px; 
    right: 15px; 
    background: var(--tab3600-secondary); 
    color: white; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 12px; 
    font-weight: bold; 
    z-index: 2;
}
.card-image { 
    display: block; 
    overflow: hidden; 
    aspect-ratio: 1; 
    background: #1e2a3a; 
}
.card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: var(--tab3600-transition); 
}
.product-card:hover .card-image img { 
    transform: scale(1.05); 
}
.card-no-image { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100%; 
    color: var(--tab3600-text-muted); 
    font-size: 48px; 
}
.card-content { 
    padding: 16px; 
}
.card-title { 
    font-size: 15px; 
    margin: 0 0 10px; 
    line-height: 1.5; 
}
.card-title a { 
    color: var(--tab3600-text); 
    text-decoration: none; 
}
.card-title a:hover { 
    color: var(--tab3600-primary-light); 
}
.card-price { 
    margin-bottom: 12px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    flex-wrap: wrap; 
}
.card-price .price { 
    font-size: 18px; 
    font-weight: bold; 
    color: var(--tab3600-primary-light); 
}
.card-price .old-price { 
    text-decoration: line-through; 
    color: var(--tab3600-text-muted); 
    font-size: 14px; 
}
.card-price .new-price { 
    font-size: 18px; 
    font-weight: bold; 
    color: var(--tab3600-secondary); 
}
.card-actions { 
    display: flex; 
    gap: 8px; 
    margin-bottom: 10px; 
}
.card-btn {
    flex: 1; 
    padding: 8px; 
    border: 1px solid #405b73; 
    background: #1e2a3a; 
    border-radius: 6px;
    cursor: pointer; 
    font-size: 13px; 
    transition: var(--tab3600-transition); 
    color: var(--tab3600-text-light);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 5px;
}
.card-btn:hover { 
    border-color: var(--tab3600-primary-light); 
    color: var(--tab3600-primary-light); 
}
.card-button {
    display: block; 
    text-align: center; 
    background: var(--tab3600-primary); 
    color: white;
    padding: 10px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: bold; 
    transition: var(--tab3600-transition);
}
.card-button:hover { 
    background: #3a4a5e; 
}

/* ==================== Quick View Modal ==================== */
.quick-view-modal { 
    position: relative; 
}
.quick-view-close { 
    position: absolute; 
    top: 10px; 
    right: 15px; 
    font-size: 28px; 
    cursor: pointer; 
    color: var(--tab3600-text-muted); 
    z-index: 1; 
}
.quick-view-close:hover { 
    color: var(--tab3600-secondary); 
}
.quick-view-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
}
.quick-view-image img { 
    width: 100%; 
    border-radius: 8px; 
}
.quick-view-details h2 { 
    font-size: 22px; 
    margin: 0 0 15px; 
    color: var(--tab3600-text);
}
.quick-view-price { 
    margin-bottom: 15px; 
}
.quick-view-price del { 
    color: var(--tab3600-text-muted); 
    margin-left: 10px; 
}
.quick-view-price ins { 
    text-decoration: none; 
    color: var(--tab3600-secondary); 
    font-size: 22px; 
    font-weight: bold; 
}
.quick-view-price span { 
    font-size: 22px; 
    font-weight: bold; 
    color: var(--tab3600-primary-light); 
}
.quick-view-excerpt { 
    color: var(--tab3600-text-light); 
    line-height: 1.7; 
    margin-bottom: 20px; 
}
.quick-view-details .btn-inquiry { 
    text-align: center; 
    justify-content: center; 
}

/* ==================== Modal ==================== */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.85); 
    animation: fadeIn 0.3s;
}
.modal-content {
    position: relative; 
    background: var(--tab3600-bg-card); 
    margin: 5% auto; 
    padding: 30px;
    border-radius: var(--tab3600-radius); 
    max-width: 600px; 
    max-height: 80vh;
    overflow-y: auto; 
    animation: slideUp 0.3s; 
    width: 90%;
    border: 1px solid #405b73;
}
.modal-close { 
    position: absolute; 
    top: 15px; 
    right: 20px; 
    font-size: 28px; 
    color: var(--tab3600-text-muted); 
    cursor: pointer; 
}
.modal-close:hover { 
    color: var(--tab3600-secondary); 
}
@keyframes fadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}
@keyframes slideUp { 
    from { transform: translateY(50px); opacity: 0; } 
    to { transform: translateY(0); opacity: 1; } 
}

/* ==================== Inquiry Form ==================== */
.inquiry-form h2 { 
    margin: 0 0 25px; 
    font-size: 22px; 
    color: var(--tab3600-text);
}
.form-group { 
    margin-bottom: 18px; 
}
.form-group label { 
    display: block; 
    margin-bottom: 6px; 
    font-weight: bold; 
    color: var(--tab3600-text); 
}
.form-group input, .form-group textarea {
    width: 100%; 
    padding: 12px; 
    border: 2px solid #405b73; 
    border-radius: 8px;
    font-size: 14px; 
    transition: var(--tab3600-transition); 
    font-family: inherit;
    box-sizing: border-box;
    background: #1e2a3a;
    color: var(--tab3600-text-light);
}
.form-group input:focus, .form-group textarea:focus { 
    outline: none; 
    border-color: var(--tab3600-primary-light); 
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6a7a8a;
}
.btn-inquiry-submit {
    width: 100%; 
    padding: 14px; 
    background: var(--tab3600-primary); 
    color: white;
    border: none; 
    border-radius: 8px; 
    font-size: 16px; 
    font-weight: bold; 
    cursor: pointer;
}
.btn-inquiry-submit:hover { 
    background: #3a4a5e; 
}

/* ==================== Compare Bar ==================== */
.compare-bar {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: #1a1a2a; 
    color: white;
    z-index: 9998; 
    padding: 15px 30px; 
    animation: slideUp 0.3s;
    border-top: 1px solid #405b73;
}
.compare-bar-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}
.compare-count { 
    font-size: 14px; 
    color: var(--tab3600-text-muted); 
}
.btn-compare-submit { 
    padding: 10px 25px; 
    background: var(--tab3600-primary); 
    color: white; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    margin-right: auto; 
}
.btn-compare-submit:hover {
    background: #3a4a5e;
}
.btn-compare-clear { 
    padding: 10px 20px; 
    background: transparent; 
    color: var(--tab3600-text-muted); 
    border: 1px solid #405b73; 
    border-radius: 8px; 
    cursor: pointer; 
}
.btn-compare-clear:hover {
    color: var(--tab3600-secondary);
    border-color: var(--tab3600-secondary);
}

/* ==================== Archive ==================== */
.archive-title { 
    font-size: 26px; 
    font-weight: bold; 
    margin-bottom: 25px; 
    color: var(--tab3600-text);
}
.tab3600-no-products { 
    text-align: center; 
    padding: 50px 20px; 
    color: var(--tab3600-text-muted); 
}
.tab3600-no-products i { 
    font-size: 48px; 
    display: block; 
    margin-bottom: 15px; 
}

/* ==================== Responsive ==================== */
@media (max-width: 992px) {
    .related-products-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .quick-view-grid { 
        grid-template-columns: 1fr; 
    }
    .gallery-nav.prev { 
        left: 5px; 
    }
    .gallery-nav.next { 
        right: 5px; 
    }
}

@media (max-width: 768px) {
    .tab3600-container { 
        padding: 15px; 
    }
    
    .product-main { 
        grid-template-columns: 1fr; 
        gap: 30px; 
        padding: 20px; 
        overflow: hidden;
    }
    
    .product-title { 
        font-size: 22px; 
    }
    .product-price-box .price, 
    .product-price-box .sale-price { 
        font-size: 24px; 
    }
    
    .product-actions { 
        flex-direction: column; 
        gap: 10px;
    }
    .btn { 
        justify-content: center; 
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        text-align: center;
    }
    
    .related-products-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
    }
    .modal-content { 
        margin: 10% 15px; 
        padding: 20px; 
        width: auto; 
    }
    
    .product-gallery {
        max-width: 100%;
    }
    .thumbnail-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .tab3600-container { 
        padding: 10px; 
    }
    .product-meta { 
        flex-direction: column; 
        gap: 10px; 
    }
    .thumbnail { 
        width: 60px; 
        height: 60px; 
    }
    .related-products-grid { 
        grid-template-columns: 1fr; 
    }
    .spec-key { 
        width: 40%; 
    }
    .card-actions { 
        flex-direction: column; 
    }
    
    .product-main, 
    .product-gallery, 
    .product-info,
    .product-price-box,
    .product-actions {
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    .tab3600-products-grid { 
        grid-template-columns: 1fr !important; 
    }
    
    .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
}