/* Custom styles for CleanCat */

/* Anchor positioning with mobile header offset */
#services-section {
    scroll-margin-top: 120px; /* Desktop default */
}

@media (max-width: 768px) {
    #services-section {
        scroll-margin-top: 80px; /* Mobile adjustment for sticky header */
    }
}

/* Modal window management styles */
.itsModalWrp {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.itsModalWrp.active {
    display: flex !important;
    opacity: 1;
}

/* Ensure proper centering for all modal types */
.itsModalWrp .itsModal {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: scale(0.9) !important;
    transition: transform 0.3s ease;
    margin: auto;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
}

.itsModalWrp.active .itsModal {
    transform: scale(1) !important;
}

/* Specific fix for cost calculator modal */
.itsModalWrp.costCalc {
    display: none !important;
}

.itsModalWrp.costCalc.active {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

.itsModalWrp.costCalc .itsModal {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
}

/* Debug styles to ensure modal is visible */
.itsModalWrp.costCalc.active {
    z-index: 1055 !important;
}

.itsModalWrp.costCalc .itsModal.itsModal_callBack {
    background: white !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Fix for banner_web2.png path issue */
.banner {
  background: url('../wp-content/uploads/2023/01/banner_web2.png') center no-repeat !important;
}

/* Mobile banner fixes */
@media (max-width: 768px) {
  /* Position banner_web2.png 10% lower and ensure it's visible */
  .banner {
    background: url('../wp-content/uploads/2023/01/banner_web2.png') center 10% no-repeat !important;
    background-size: 63% !important; /* 37% smaller than contain */
    padding-top: 40px !important;
    position: relative !important;
  }
  
  /* Adjust indexbg.webp to be visible behind banner_web2.png */
  .banner__bgImg {
    position: absolute !important;
    top: 0 !important; /* Show from the top */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    height: 100% !important; /* Full height */
    object-fit: cover !important;
    z-index: -1 !important; /* Behind banner_web2.png background */
  }
  
  /* Ensure banner content stays above both images */
  .banner__container {
    position: relative !important;
    z-index: 10 !important;
    padding-top: 60px !important; /* Add more space for banner_web2.png */
  }
  
  /* Adjust banner top section */
  .banner__top {
    position: relative !important;
    z-index: 11 !important;
    margin-top: 40px !important;
  }
}

/* Default logo size for desktop */
.header__logo img {
  width: 80%;
}

/* Make logo bigger on mobile devices */
@media (max-width: 1024px) {
  .header__logo {
    width: 150px !important;
  }
  .header__logo img {
    width: 100% !important;
  }
}

/* For even smaller screens */
@media (max-width: 480px) {
  .header__logo {
    width: 130px !important;
  }
}

/* Nested collapsible sections */
.nested-collapsible {
  position: relative;
  padding-right: 30px;
  padding-left: 0;
  cursor: pointer;
  font-weight: bold;
  margin: 8px 0;
  transition: all 0.3s;
  color: #000227;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 22px;
}

.nested-collapsible:hover {
  color: #00bbfc;
}

.nested-collapsible .collapsible-text {
  flex-grow: 1;
}

.nested-collapsible:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #00bbfc;
  border-radius: 50%;
}

.nested-collapsible:after {
  content: '+';
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 15px;
  line-height: 15px;
  color: #fff;
  transition: all 0.3s;
}

.nested-collapsible.active:after {
  content: '-';
  right: 6px;
}

/* Mobile adjustments for better centering of plus/minus signs */
@media (max-width: 767px) {
  .nested-collapsible:after {
    right: 4px;
    top: 50%;
  }
  
  .nested-collapsible.active:after {
    right: 5px;
  }
  
  /* Adjustments for longer text items */
  .nested-collapsible .collapsible-text {
    display: inline-block;
    padding-right: 5px;
  }
}

.nested-content {
  display: none;
  padding-left: 10px;
  margin: 5px 0 10px;
  line-height: 1.5;
  color: rgba(0, 2, 39, 0.8);
}

.nested-content.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* JavaScript Fix for null element errors */

/* Hide error-prone elements until safely initialized */
.header__cityListItmCurrent, .header__cityList {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header__cityListItmCurrent.safe-init, .header__cityList.safe-init {
  opacity: 1;
}

/* Ensure proper initialization order */
.header__burger {
  pointer-events: none;
  transition: all 0.3s ease;
}

.header__burger.safe-init {
  pointer-events: auto;
}

/* Shopping Cart Styles */
.header__icon_cart {
  position: relative;
  color: #fff;
  font-size: 18px;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.header__icon_cart:hover {
  color: #4CAF50;
}

.header__icon_cart .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  min-width: 18px;
}

.header__icon_cart .cart-count:empty,
.header__icon_cart .cart-count[style*="display: none"] {
  display: none !important;
}

/* Responsive cart icon */
@media (max-width: 768px) {
  .header__icon_cart {
    font-size: 16px;
    margin-left: 10px;
  }
  
  .header__icon_cart .cart-count {
    width: 16px;
    height: 16px;
    font-size: 9px;
    top: -6px;
    right: -6px;
  }
}

/* CleanCat.ie Custom Styles */

/* Cart in Menu Styling */
.menu-item-cart {
    display: flex;
    align-items: center;
}

.menu-item-cart .header__icon_cart {
    display: flex;
    align-items: center;
    color: #000227;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(0, 187, 252, 0.1);
    border: 1px solid rgba(0, 187, 252, 0.2);
}

.menu-item-cart .header__icon_cart:hover {
    color: #00bbfc;
    background: rgba(0, 187, 252, 0.2);
    border-color: #00bbfc;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 187, 252, 0.3);
}

.menu-item-cart svg {
    display: none !important; /* Hide SVG, use CSS icon instead */
}

/* Custom SVG cart icon */
.menu-item-cart .header__icon_cart::before {
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 8px;
    background-image: url('../images/cart-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.menu-item-cart .cart-count {
    background: #ff4757;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-weight: bold;
    position: relative;
    top: auto;
    right: auto;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hide cart count when empty */
.menu-item-cart .cart-count:empty,
.menu-item-cart .cart-count[style*="display: none"] {
    display: none !important;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .menu-item-cart {
        padding: 10px 0;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }
}

/* Cart Icon Styling - Integrated with header design */
#cart-icon {
    position: relative;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#cart-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

#cart-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    transition: stroke 0.3s ease;
}

.cart-count {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: #ff4757 !important;
    color: white !important;
    border-radius: 50% !important;
    min-width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: bold !important;
    animation: cart-pulse 2s infinite;
}

@keyframes cart-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Cart Icon */
@media (max-width: 768px) {
    #cart-icon {
        top: 15px !important;
        right: 15px !important;
        width: 50px;
        height: 50px;
    }
    
    .cart-count {
        min-width: 18px !important;
        height: 18px !important;
        font-size: 11px !important;
    }
}

/* Cart Modal Enhancements */
.cart-modal {
    font-family: 'Eastman', Verdana, sans-serif;
}

.cart-modal-header h2 {
    color: #000227;
    font-weight: 500;
    margin: 0;
}

.cart-item {
    border-radius: 8px;
    background: #f8f9fa;
    margin-bottom: 10px;
    padding: 15px !important;
    border: 1px solid #e9ecef !important;
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item h4 {
    color: #000227;
    font-weight: 500;
}

.cart-item-price {
    color: #00bbfc;
    font-weight: 600;
}

/* Notification system styling */
#cart-notifications {
    font-family: 'Eastman', Verdana, sans-serif;
}

.cart-notification {
    border-radius: 8px !important;
    font-weight: 500;
    border: none;
}

/* Service tile cart button integration */
.tiles__itm .cart-button-container {
    margin: 10px 0;
    padding: 0 15px;
    justify-content: center;
}

/* Ensure cart buttons don't interfere with existing layout */
.tiles__itm .tiles__itmLnk {
    margin-top: 10px;
}

/* Modal overlay styles moved to unified-cart-styles.css */

/* Additional cart button hover effects */
.add-to-cart-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 187, 252, 0.4) !important;
}

.qty-btn:hover {
    box-shadow: 0 2px 6px rgba(0, 187, 252, 0.3);
}

/* Cart button success state */
.add-to-cart-btn.added {
    background: linear-gradient(135deg, #ff6b35, #ff8c42) !important;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .tiles__itm .cart-button-container {
        padding: 0 10px;
    }
    
    .cart-modal-content {
        margin: 10px;
        max-width: calc(100vw - 20px);
    }
    
    /* Enhanced mobile cart button styles */
    .add-to-cart-btn {
        min-height: 48px !important;
        font-size: 16px !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        background: linear-gradient(135deg, #00bbfc, #0099d4) !important;
        color: white !important;
        border: none !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 12px rgba(0, 187, 252, 0.3) !important;
        text-decoration: none !important;
        position: relative !important;
        overflow: hidden !important;
        z-index: 1 !important;
    }
    
    .add-to-cart-btn:hover,
    .add-to-cart-btn:focus {
        background: linear-gradient(135deg, #0099d4, #0077aa) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(0, 187, 252, 0.4) !important;
    }
    
    .add-to-cart-btn:active {
        transform: translateY(0) scale(0.98) !important;
    }
    
    .add-to-cart-btn.processing {
        background: linear-gradient(135deg, #6c757d, #5a6268) !important;
        cursor: not-allowed !important;
        opacity: 0.8 !important;
        pointer-events: none !important;
    }
    
    .add-to-cart-btn.added {
        background: linear-gradient(135deg, #ff6b35, #ff8c42) !important;
        animation: mobile-success-pulse 0.6s ease !important;
    }
    
    .add-to-cart-btn.error {
        background: linear-gradient(135deg, #dc3545, #c82333) !important;
        animation: mobile-error-shake 0.6s ease !important;
    }
    
    @keyframes mobile-success-pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    @keyframes mobile-error-shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }
    
    /* Mobile touch optimizations */
    .add-to-cart-btn {
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
    
    /* Ensure visibility on mobile */
    .service-card .add-to-cart-btn,
    .card-actions .add-to-cart-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }
}

/* Loading state for cart operations */
.add-to-cart-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.add-to-cart-btn.loading::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Make Order Button Styles */
.menu-item-make-order {
    display: none !important; /* Hidden by default until cart has items */
    align-items: center;
    margin-left: 20px !important;
}

.menu-item-make-order.show {
    display: flex !important; /* Show when cart has items */
}

.make-order-btn {
    display: flex !important;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35, #ff8c42) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    gap: 8px !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 140px !important;
    justify-content: center !important;
}

.make-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.make-order-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    background: linear-gradient(135deg, #ff8c42, #ff6b35) !important;
    color: white !important;
    text-decoration: none !important;
}

.make-order-btn:hover::before {
    left: 100%;
}

.make-order-text {
    font-weight: 600 !important;
    color: white !important;
}

.make-order-count {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin-left: 4px !important;
}

/* Responsive styles for Make Order button */
@media (max-width: 1200px) {
    .make-order-btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
        min-width: 120px !important;
    }
}

@media (max-width: 991px) {
    .menu-item-make-order {
        margin-left: 10px !important;
    }
    
    .make-order-btn {
        padding: 8px 16px !important;
        font-size: 14px !important;
        min-width: 100px !important;
    }
}

@media (max-width: 767px) {
    .menu-item-make-order {
        order: -1 !important; /* Show first on mobile */
        margin: 10px 0 !important;
        width: 100% !important;
    }
    
    .make-order-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
        border-radius: 12px !important;
    }
}

/* Animation for button appearance */
@keyframes makeOrderSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item-make-order.show {
    animation: makeOrderSlideIn 0.4s ease-out !important;
}

/* Hide regular cart icon when make order button is visible on mobile */
@media (max-width: 767px) {
    .menu-item-make-order.show ~ .menu-item-cart {
        display: none !important;
    }
}

/* ========================================
   CLEANCAT.IE CUSTOM STYLES
   Version: 1750650200 - December 2024
   ======================================== */

/* ============ DESKTOP HEADER FIXES ============ */
@media (min-width: 769px) {
    
    /* FORCE ORIGINAL HEADER POSITIONING - Override sticky behavior */
    .header,
    .header.sticky,
    section.header,
    section.header.sticky {
        position: relative !important;
        top: 0 !important;
        z-index: auto !important;
        transform: none !important;
        background: #f5f7fa !important;
    }
    
    /* ENSURE HEADER SECTIONS ARE VISIBLE */
    .header__top,
    .header__bottom,
    .header__contacts,
    .header__logo,
    .header__menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }
    
    /* FORCE CONTACT ELEMENTS TO BE VISIBLE */
    .header__sTxt,
    .header__sTxtTop,
    .header__sTxtBottom,
    .header__iconsTxt,
    .header__icons,
    .header__txt,
    .header__txtTop,
    .header__txtBottom,
    .header__link,
    .header__logoTxt {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }
    
    /* SPECIFIC FIXES FOR CONTACT SECTION */
    .header__contacts {
        display: flex !important;
        align-items: center !important;
        margin-left: auto !important;
        width: auto !important;
    }
    
    .header__iconsTxt {
        display: flex !important;
        align-items: center !important;
    }
    
    .header__icons {
        display: flex !important;
        gap: 10px !important;
    }
    
    /* NAVIGATION MENU POSITIONING FIX */
    .header__menuWrp,
    .menu {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
    }
    
    /* HIDE MOBILE ELEMENTS COMPLETELY */
    .mobile-sticky-header,
    .mobile-dropdown-menu,
    .mobile-menu-overlay,
    .mobile-nav-center,
    .mobile-services-btn,
    .mobile-cart-btn,
    .header__contacts_mob {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* RESET BODY STYLES */
    body {
        padding-top: 0 !important;
        transform: none !important;
    }
    
    /* ENSURE NORMAL DOCUMENT FLOW */
    .banner,
    .tiles,
    .doublecar,
    .txtform,
    main,
    .content {
        position: relative !important;
        display: block !important;
        visibility: visible !important;
    }
}

/* ============ HIDE CART ICONS EVERYWHERE ============ */
/* Hide cart icons on all devices */
#cart-icon,
.header__icon_cart,
.menu-item-cart,
.header__icon.header__icon_cart,
li.menu-item.menu-item-cart,
a[href="#"].header__icon.header__icon_cart,
.cart-icon,
div.cart-icon {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    z-index: -9999 !important;
}

/* Hide any SVG cart icons */
.header__icon_cart svg,
#cart-icon svg,
.cart-icon svg,
div.cart-icon svg {
    display: none !important;
    visibility: hidden !important;
}

/* Hide cart count elements */
.cart-count,
.header__icon_cart .cart-count,
#cart-icon .cart-count,
.cart-icon .cart-count {
    display: none !important;
    visibility: hidden !important;
}

/* Services button styles moved to mobile-header-unified.css */

/* Make Order button styles moved to mobile-header-unified.css */

/* Mobile header styles moved to mobile-header-unified.css */

/* ============ MOBILE COMPATIBILITY ============ */
@media (max-width: 768px) {
    /* Hide original header on mobile */
    .header {
        display: none !important;
    }
    
    /* Ensure mobile header works */
    .mobile-sticky-header {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        z-index: 1000 !important;
    }
}

/* ============ SERVICE CARDS GRID FIX ============ */
@media (min-width: 769px) {
    .tiles__container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        align-items: stretch !important;
    }
    
    .tile {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: 300px !important;
    }
    
    .tile__content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .tile__text {
        flex: 1 !important;
    }
    
    .tile:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
        transition: all 0.3s ease !important;
    }
}

/* ============ CART FUNCTIONALITY ============ */
.cart-counter {
    background: #ff4444;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    text-align: center;
}

.cart-icon {
    position: relative;
    display: inline-block;
}

/* ============ MOBILE RESPONSIVE IMPROVEMENTS ============ */
@media (max-width: 768px) {
    .tiles__container {
        display: block !important;
        grid-template-columns: none !important;
    }
    
    .tile {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
}

/* ============ ANIMATION IMPROVEMENTS ============ */
.tile,
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.tile:hover,
.service-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

/* ============ ACCESSIBILITY IMPROVEMENTS ============ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============ PRINT STYLES ============ */
@media print {
    .mobile-sticky-header,
    .mobile-dropdown-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .header {
        display: block !important;
        position: static !important;
    }
} 