/**
 * Custom WooCommerce Filters Frontend Styles
 * 
 * @package Woodmart Child
 * @version 2.6.6 - Added estimated delivery display for product grid with green date styling
 */

/* ========================================
   CUSTOM COLOR SWATCHES - 5 COLORS + EXPAND/COLLAPSE  
   ======================================== */

/* Hide colors 6+ in product grid by default */
.products .wd-swatches-product .wd-swatch:nth-child(n+6) {
    display: none !important;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

/* Show all colors when expanded with animation */
.products .wd-swatches-product.colors-expanded .wd-swatch {
    display: inline-block !important;
    opacity: 1;
    transform: scale(1);
}

/* Expanded state: allow container to grow and wrap properly */
.products .wd-swatches-product.colors-expanded {
    max-width: 250px !important;
    width: auto !important;
}

/* Container positioning for expand/collapse functionality */
.products .wd-swatches-product {
    position: relative;
    display: grid;
    /* Grid columns will be set dynamically by JavaScript */
    gap: 5px;
    align-items: center;
    justify-content: center;
    max-width: 216px!important;
    margin: 0 auto;
    grid-auto-flow: row;
}

/* Swatches sizing */
.products .wd-swatches-product .wd-swatch {
    margin: 0 !important;
    width: 100%;
    aspect-ratio: 1;
    min-width: 25px;
    max-width: 30px;
    height: auto;
}

/* Expand button positioning - will be set dynamically */
.products .wd-swatches-product .wd-swatches-expand-btn {
    margin: 0;
}

/* Style for expand button (+3) */
.products .wd-swatches-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #666;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 2px;
    transition: all 0.2s ease;
    vertical-align: top;
    position: relative;
    z-index: 2;
    text-decoration: none;
    opacity: 1;
}

.products .wd-swatches-expand-btn:hover {
    border-color: #333;
    color: #333;
    transform: scale(1.05);
    text-decoration: none;
}

/* Hide expand button when colors are expanded */
.products .wd-swatches-product.colors-expanded .wd-swatches-expand-btn {
    opacity: 0;
    pointer-events: none;
}

/* Enhanced border for active/selected swatch */
.products .wd-swatch.wd-active {
    position: relative;
    transform: scale(1.1);
    z-index: 3;
}

/* Dynamic border color will be set via JavaScript */
.products .wd-swatch.wd-active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--active-swatch-color, #333);
    border-radius: inherit;
    z-index: -1;
}

/* Responsive adjustments for color swatches */
@media (max-width: 768px) {
    .products .wd-swatches-product {
        max-width: 180px;
        gap: 3px;
        /* Grid columns will be set dynamically by JavaScript on mobile too */
    }
    
    .products .wd-swatches-product .wd-swatch {
        min-width: 20px;
        max-width: 30px;
    }
    
    .products .wd-swatches-expand-btn {
        width: 25px;
        height: 25px;
        font-size: 10px;
        margin: 3px 0 0 0;
    }
}

/* ========================================
   END CUSTOM COLOR SWATCHES
   ======================================== */

/* ========================================
   WOODMART OVERRIDE - HIDE NO PRODUCTS WHEN FILTERS ACTIVE
   ======================================== */

body.product-category .wd-shop-product .woocommerce-no-products-found,
body.product-category .wd-shop-product .wd-sticky-loader {
    display: none !important;
}

/* Ensure injected products container displays properly */
.wd-shop-product .products.custom-injected {
    display: grid !important;
    margin: 0 !important;
    /*padding: 20px 0 !important;*/
}
.custom-sorting-container{
    display: none!important;
}
.woocommerce-pagination.custom-pagination-container nav ul {
    justify-content: flex-end;
    width: 100%;
    padding-top: 20px;
}
div#custom-pagination-container{
    padding-top: 20px!important;
}
/* Woodmart grid styles for our injected container */
.wd-shop-product .products.custom-injected.wd-grid-g {
    display: grid !important;
    grid-template-columns: repeat(var(--wd-col-lg), 1fr) !important;
    /*gap: var(--wd-gap-lg) !important;*/
}

.wd-shop-product .products.custom-injected .product {
    margin: 0 !important;
    display: block !important;
}

/* Responsive grid */
@media (max-width: 1024px) {
    .wd-shop-product .products.custom-injected.wd-grid-g {
        grid-template-columns: repeat(var(--wd-col-md), 1fr) !important;
    }
}

@media (max-width: 768px) {
    .wd-shop-product .products.custom-injected.wd-grid-g {
        grid-template-columns: repeat(var(--wd-col-sm), 1fr) !important;
        gap: var(--wd-gap-sm) !important;
    }
}

/* ========================================
   MAIN FILTERS WIDGET - CUSTOM EDONKWIAT STYLE
   ======================================== */

.edonkwiat-custom-filters-widget {
    margin-bottom: 30px;
    background: #fff;
    border: none;
}

.edonkwiat-custom-filters-widget .edonkwiat-widget-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edonkwiat-custom-filters-widget .custom-filters-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Ensure our form is always styled correctly */
#custom-filters-form.custom-filters-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
}

/* ========================================
   FILTER GROUPS
   ======================================== */

.filter-group {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-title {
    font-size: 14px!important;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ========================================
   FILTER CHECKBOXES - WOODMART STYLE
   ======================================== */

.filter-option-group,
.filter-option-single {
    position: relative;
}

.filter-group-label,
.filter-single-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 0;
    font-size: 14px;
    color: #666;
    transition: color 0.2s ease;
    margin: 0;
    line-height: 1.4;
}

.filter-group-label:hover,
.filter-single-label:hover {
    color: #333;
}

/* Custom checkbox styling */
.filter-checkbox {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.filter-checkbox:hover {
    border-color: #333;
}
.wd-shop-active-filters{display: none!important;}
.filter-checkbox:checked {
    background: #fff;
    border-color: #333;
}

/*.filter-checkbox:checked::after {*/
/*    content: '✓';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    color: #fff;*/
/*    font-size: 10px;*/
/*    font-weight: bold;*/
/*}*/

.checkmark {
    display: none; /* Hide default checkmark span */
}

.filter-count {
    margin-left: auto;
    font-size: 10px;
    color: #afafaf;
    /*background: #f8f8f8;*/
    padding: 2px 6px;
    border-radius: 8px;
    min-width: 20px;
    text-align: center;

    padding-inline: 5px;
    min-width: 30px;
    height: 20px;
    border: 1px solid var(--brdcolor-gray-300);
    border-radius: 35px;
    color: var(--color-gray-500);
    text-align: center;
    font-size: 12px;
    line-height: normal;
    margin-right: 20px;
}

/* ========================================
   PRICE FILTER
   ======================================== */

.price-filter-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    text-align: center;
    background: #fff;
    transition: border-color 0.2s ease;
}

.price-input:focus {
    outline: none;
    border-color: #333;
}

.price-input::placeholder {
    color: #999;
    font-size: 12px;
}

.price-separator {
    color: #666;
    font-weight: 500;
    font-size: 14px;
}

/* ========================================
   LOADING STATES
   ======================================== */

.custom-filters-form.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.custom-filters-form.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-filters-form.loading::before {
    content: 'Ładowanie...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    color: #666;
}

/* ========================================
   ACTIVE FILTERS DISPLAY
   ======================================== */

.active-filters {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    display: none;
}

.active-filters.has-filters {
    display: block;
}

.active-filters-title {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.active-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 11px;
    color: #333;
}

.remove-active-filter {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    font-size: 12px;
    line-height: 1;
}

.remove-active-filter:hover {
    color: #333;
}

/* ========================================
   INTEGRATION WITH WOODMART SIDEBAR
   ======================================== */

/* Match Woodmart sidebar widget spacing */
.woodmart-sidebar .edonkwiat-custom-filters-widget {
    margin-bottom: 40px;
}

/* Match Woodmart widget titles */
.edonkwiat-custom-filters-widget .edonkwiat-widget-title {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* ========================================
   RESPONSIVE DESIGN (Desktop focus)
   ======================================== */

@media (min-width: 1025px) {
    .edonkwiat-custom-filters-widget {
        max-width: 100%;
    }
    
    .filter-options {
        max-height: 250px;
        overflow-y: auto;
        padding-right: 5px;
    }
    
    .filter-options::-webkit-scrollbar {
        width: 4px;
    }
    
    .filter-options::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .filter-options::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }
    
    .filter-options::-webkit-scrollbar-thumb:hover {
        background: #999;
    }
}

/* ========================================
   STATES AND INTERACTIONS
   ======================================== */

.filter-checkbox:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.filter-group-label.disabled,
.filter-single-label.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.filter-group.has-selection .filter-title {
    color: #333;
    font-weight: 700;
}

/* ========================================
   ACTIVE FILTERS ABOVE GRID
   ======================================== */

#active-filters-above-grid {
    margin: 20px 0;
    padding: 15px;
    /*background: #f8f9fa;*/
    border: 1px solid #e9ecef;
    /*border-radius: 4px;*/
    display: none;
}

#active-filters-above-grid.has-filters {
    display: block;
}

#active-filters-above-grid .active-filters-title {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#active-filters-above-grid .active-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filter-tag-grid {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #ddd;
    /*border-radius: 20px;*/
    font-size: 12px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.active-filter-tag-grid:hover {
    border-color: #999;
    background: #f5f5f5;
}

.active-filter-tag-grid .remove-active-filter {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: inherit;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0;
}

/* Top pagination positioning and layout */
.pagination-top-custom {
    margin: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

/* ========================================
   SORTING SELECT STYLES
   ======================================== */

.sorting-wrapper,
.custom-sorting-container {
    flex-shrink: 0;
}

.sorting-wrapper .sorting-label,
.custom-sorting-container .sorting-label {
    user-select: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin: 0;
}

.sorting-wrapper .sorting-label:hover,
.custom-sorting-container .sorting-label:hover {
    color: #333;
}

#custom-sorting-select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s ease;
    min-width: 200px;
}

#custom-sorting-select:hover {
    border-color: #2c5aa0;
}

#custom-sorting-select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 1px rgba(44, 90, 160, 0.2);
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .pagination-top-custom > div {
        flex-direction: column-reverse !important;
        gap: 10px !important;
        align-items: flex-end !important;
    }

    .pagination-wrapper {
        order: 2;
    }

    .sorting-wrapper {
        order: 1;
    }

    .sorting-wrapper .sorting-label {
        font-size: 12px;
    }

    #custom-sorting-select {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* ========================================
   MOBILE FILTER BUTTONS (CATEGORIES & FILTERS)
   ======================================== */

/* Hide mobile filter buttons on desktop */
.mobile-filter-buttons {
    display: none !important;
}

/* Show mobile filter buttons only on tablets and mobile */
@media (max-width: 1199px) {
    .mobile-filter-buttons {
        display: flex !important;
        gap: 10px;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    /* Style mobile filter buttons to match Woodmart */
    .mobile-categories-btn,
    .mobile-filters-btn {
        flex: 1;
        /*max-width: 150px;*/
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .mobile-categories-btn a,
    .mobile-filters-btn a {
        display: block;
        padding: 12px 15px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .mobile-categories-btn:hover a,
    .mobile-filters-btn:hover a,
    .mobile-categories-btn.active a,
    .mobile-filters-btn.active a {
        color: #2c5aa0;
    }
}

/* Sidebar content switcher buttons */
.sidebar-content-switcher {
    display: none;
}

@media (max-width: 1199px) {
    .sidebar-content-switcher {
        display: flex !important;
    }
    
    .sidebar-switch-btn:hover {
        background: #f5f5f5 !important;
        color: #333 !important;
    }
    
    .sidebar-switch-btn:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.2);
    }
}

/* Hide original off-canvas button when our buttons are visible */
@media (max-width: 1199px) {
    .wd-off-canvas-btn:not(.mobile-categories-btn):not(.mobile-filters-btn) {
        display: none !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #active-filters-above-grid {
        margin: 15px 0;
        padding: 12px;
    }
    
    #active-filters-above-grid .active-filter-tags {
        gap: 6px;
    }
    
    .active-filter-tag-grid {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    /* Adjust mobile filter buttons for small screens */
    .mobile-filter-buttons {
        margin-bottom: 10px;
    }
    
    .mobile-categories-btn a,
    .mobile-filters-btn a {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ========================================
   WOODMART THEME VARIABLES INTEGRATION
   ======================================== */

.edonkwiat-custom-filters-widget {
    --filter-primary-color: #333;
    --filter-text-color: #666;
    --filter-border-color: #ddd;
    --filter-background: #fff;
    --filter-hover-color: #333;
}

/* Dark mode support (if Woodmart has dark mode) */
@media (prefers-color-scheme: dark) {
    .edonkwiat-custom-filters-widget {
        --filter-primary-color: #fff;
        --filter-text-color: #ccc;
        --filter-border-color: #444;
        --filter-background: #333;
        --filter-hover-color: #fff;
    }
}

/* ========================================
   WOODMART THEME SPECIFIC STYLES
   ======================================== */

/* Ensure our filters work properly in Woodmart sidebars */
.woodmart-sidebar .edonkwiat-custom-filters-widget,
.sidebar-content .edonkwiat-custom-filters-widget,
.widget-area .edonkwiat-custom-filters-widget {
    background: transparent;
    border: none;
    margin-bottom: 30px;
}

/* Make sure our filters don't get overridden by Woodmart styles */
.edonkwiat-custom-filters-widget .custom-filters-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
}

/* Prevent Woodmart from styling our checkboxes */
.edonkwiat-custom-filters-widget .filter-checkbox {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}


/*.categories-accordion-on .widget_product_categories .children .count{*/
/*    display: none!important;*/
/*}*/
.categories-accordion-on .widget_product_categories .count{
    margin: 5px 0!important;
}
.categories-accordion-on .widget_product_categories {
    align-items: center!important;
    width: 100%;
}

.wd-shop-ordering, .wd-shop-view, .wd-shop-prod-per-page{
    display: none!important;
}

/* ========================================
   SMART PAGINATION STYLES - FOR BOTH TOP AND BOTTOM
   ======================================== */

/* Custom pagination with ellipsis - applies to both top and bottom */
.pagination-top-custom .page-numbers.ellipsis,
.woocommerce-pagination .page-numbers.ellipsis {
    color: #999;
    cursor: default;
    padding: 0 5px;
    font-weight: normal;
}

/* Current page with square brackets styling - applies to both */
.pagination-top-custom .page-numbers.current,
.woocommerce-pagination .page-numbers.current {
    /*font-weight: bold;*/
    /*color: #2c5aa0;*/
    /*background: transparent;*/
    /*border: none;*/
}

/* Navigation arrows styling - applies to both */
.pagination-top-custom .prev.page-numbers,
.pagination-top-custom .next.page-numbers,
.woocommerce-pagination .prev.page-numbers,
.woocommerce-pagination .next.page-numbers {
    font-size: 16px;
    font-weight: bold;
    padding: 8px 12px;
}

/* Compact pagination spacing - applies to both */
.pagination-top-custom .page-numbers,
.woocommerce-pagination .page-numbers {
    margin: 0 2px;
    min-width: 35px;
    text-align: center;
}

/* Responsive pagination - BOTH TOP AND BOTTOM */
@media (max-width: 768px) {
    .pagination-top-custom .page-numbers,
    .woocommerce-pagination .page-numbers {
        margin: 0 1px;
        min-width: 30px;
        padding: 6px 8px;
        font-size: 14px;
    }

    .pagination-top-custom .prev.page-numbers,
    .pagination-top-custom .next.page-numbers,
    .woocommerce-pagination .prev.page-numbers,
    .woocommerce-pagination .next.page-numbers {
        padding: 6px 10px;
        font-size: 14px;
    }
}

/* customs */
div#custom-pagination-container nav {
    display: flex;
    justify-content: end;
}
.edonkwiat-custom-filters-widget .active-filters{
    display: none!important;
}

/* ========================================
   ACTIVE FILTERS WITH ATTRIBUTE NAMES ABOVE GRID
   ======================================== */

/* Style for attribute name and value in active filter tags */
.active-filter-tag-grid .filter-attribute-name {
    color: #999;
    font-weight: normal;
}

.active-filter-tag-grid .filter-value {
    color: #333;
    font-weight: 500;
}

/* Ensure proper spacing between attribute name and value */
.active-filter-tag-grid .filter-attribute-name + .filter-value {
    margin-left: 5px;
    margin-right: 5px;
}

.wd-products-per-page, .wd-products-shop-view, .woocommerce-ordering{
    display: none!important;
}


@media (max-width: 1199.97px) {
    .wpb_column.wd-side-hidden {
        --wd-side-hidden-w: 100%;
    }
    .wd-wpb.wd-rs-6202981225f2e.vc_custom_1644337176205{
        font-size: 14px;
        display: flex;
        gap: 15px;
    }
    .filter-options{
        max-height: 250px;
        overflow-y: scroll;
    }
    #custom_woocommerce_filters-3{
        width: 100%;
    }
    body .mobile-filter-buttons{
        justify-content: center;
        flex-direction: row !important;
    }
    .mobile-categories-btn, .mobile-filters-btn{
        border: 1px solid #dcdcdc;
        padding: 5px 20px;
        justify-content: center;
    }
    .wd-rs-6213a847e2ff7{
        display: none;
    }

    .wd-action-btn.wd-style-text>a{
        font-size: 14px;
        display: flex    ;
        padding: 10px 0;
        width: 100%;
        gap: 5px;
        justify-content: center;
    }
}

.wd-swatch-bg {
    border: 1px solid white;
    /*height: auto;*/
}
[class*="wd-swatches"].wd-text-style-1.wd-swatches-grid .wd-swatch.wd-bg:after{
    display: none!important;
}

/* ========================================
   ESTIMATED DELIVERY IN PRODUCT GRID
   ======================================== */

/* Estimated delivery display under product price */
.estimated-delivery-grid {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: left;
}

/* Green color for delivery date */
.estimated-delivery-grid .delivery-date {
    color: #28a745;
    font-weight: 600;
}

/* Gray color for unavailable delivery (dash) */
.estimated-delivery-grid.out-of-stock .delivery-date {
    color: #999;
    font-weight: 400;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .estimated-delivery-grid {
        font-size: 11px;
        margin-top: 6px;
        margin-bottom: 8px;
    }
}
.wd-product .product-wrapper{
    height: 100%;
}
.wd-product .product-wrapper .price{
    margin-top: auto;
    text-align: left;
}
.wd-product.wd-hover-standard .wd-add-btn{
    justify-content: space-between;
}
.wd-product .wd-entities-title{
    text-align: left;
}
@media screen and (max-width: 1025px){
    .wd-sidebar.wd-side-hidden{
        width: 100%;
    }
}

@media screen and (min-width: 1025px){
    .archive.tax-product_cat .mobile-filter-buttons{
        /*display: none!important;*/
    }
}
