.mobile-header-icons {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.cart-icon-container, .filter-icon-container, .sort-icon-container, a, img {
    width: 30px;
    height: 30px;
}

.cart-icon, .filter-icon, .sort-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.mobile-header {
    display: none;

}




.mobile-filter-btn,
.mobile-sort-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-filter-btn img,
.mobile-sort-btn img {
  width: 16px;
  height: 16px;
}

.mobile-filters-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-filters-modal.active {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h3 {
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.modal-footer {
  margin-top: 20px;
}

.modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;

}

.apply-filters, .apply-sort {
  width: 100%;
  padding: 12px;
  background: #000;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.mobile-sort-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-height: 50vh;
    overflow-y: auto;
}

.mobile-sort-modal.active {
    transform: translateY(0);
}

.mobile-sort-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}




@media (max-width: 768px) {
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 10px 20px;
        box-sizing: border-box;
    }
    
    .mobile-header-icons {
        display: flex;
        gap: 20px;
        margin-top: 10px;
        flex-direction: row;
    }
    
    .cart-icon-container, .filter-icon-container, .sort-icon-container, a, img {
        width: 30px;
        height: 30px;
    }
    
    .cart-icon, .filter-icon, .sort-icon {
        width: 100%;
        height: 100%;
        object-fit: contain;
        cursor: pointer;
    }
    
    .sorting-layout .sorting {
        display: none;
    }
    
    .mobile-sort-btn {
        display: flex; 
    }

    .mobile-controls {
        display: flex;
    }
  
    .filters-layout {
        display: none;
    }
    
    .sorting-layout .sorting {
        display: none;
    }

    
}